HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/slenders/slenders.nl/app/Komma/Kms/QualityAssurance/BaseBenchMarkInterface.php
<?php

namespace App\Komma\Kms\QualityAssurance;


/**
 * Interface BaseBenchMarkInterface
 *
 * To benchmark the applications performance.
 *
 * @BeforeMethods({"setUp"})
 * @afterMethods({"tearDown"})
 * @beforeClassMethods({"setUpBeforeClass"})
 * @afterClassMethods({"tearDownAfterClass"})
 *
 * @package App\Komma\BenchMark
 */
interface BaseBenchMarkInterface
{
    /**
     * Setup the test environment before each benchmark
     *
     * @return void
     */
    public function setUp();

    /**
     * Clean up the testing environment before the next benchmark.
     *
     * @return void
     */
    public function tearDown();

    /**
     * Register a callback to be run after the application is created.
     *
     * @param  callable $callback
     * @return void
     */
    public function afterApplicationCreated(callable $callback);
}