PHP code example of solital / phpunit-bridge

1. Go to this page and download the library: Download solital/phpunit-bridge 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/ */

    

solital / phpunit-bridge example snippets

xml
<extensions>
    <bootstrap class="Solital\PHPUnit\PhpUnitExtension">
        <parameter name="displayProfiling" value="true"/>
    </bootstrap>
</extensions>
xml
<extensions>
    <bootstrap class="Solital\PHPUnit\PhpUnitExtension">
        <parameter name="useCompactMode" value="true"/>
    </bootstrap>
</extensions>
xml
<extensions>
    <bootstrap class="Solital\PHPUnit\PhpUnitExtension">
        <parameter name="displayQuote" value="true"/>
    </bootstrap>
</extensions>
xml
<extensions>
    <bootstrap class="Solital\PHPUnit\PhpUnitExtension">
        <parameter name="enableByDefault" value="false"/>
    </bootstrap>
</extensions>