PHP code example of jakobbuis / simple-slow-test-reporter
1. Go to this page and download the library: Download jakobbuis/simple-slow-test-reporter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jakobbuis / simple-slow-test-reporter example snippets
xml
<phpunit>
[...]
<extensions>
<bootstrap class="SSTR\SlowTestReporter">
<parameter name="threshold" value="1000"/>
</bootstrap>
</extensions>
</phpunit>
xml
<phpunit>
[...]
<extensions>
<extension class="SSTR\SlowTestReporter">
<arguments>
<integer>1000</integer>
</arguments>
</extension>
</extensions>
</phpunit>