PHP code example of unfunco / phpunit-alternative-test-prefix

1. Go to this page and download the library: Download unfunco/phpunit-alternative-test-prefix 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/ */

    

unfunco / phpunit-alternative-test-prefix example snippets

xml
<phpunit bootstrap="vendor/autoload.php">
  ...
  <listeners>
    <listener class="Unfunco\PHPUnit\Listener\AlternativeTestPrefixListener">
      <arguments>
        <string>itDoes</string>
        <string>itCan</string>
      </arguments>
    </listener>
  </listeners>
</phpunit>