File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /vendor
Original file line number Diff line number Diff line change 1+ language : php
2+ php :
3+ - 5.3
4+ - 5.6
5+ - hhvm
6+ before_script :
7+ - composer install --prefer-source --no-interaction
8+ script :
9+ - phpunit --coverage-text
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+
3+ <phpunit bootstrap =" tests/bootstrap.php"
4+ colors =" true"
5+ convertErrorsToExceptions =" true"
6+ convertNoticesToExceptions =" true"
7+ convertWarningsToExceptions =" true"
8+ >
9+ <testsuites >
10+ <testsuite name =" Asterisk AMI Test Suite" >
11+ <directory >./tests/</directory >
12+ </testsuite >
13+ </testsuites >
14+ <filter >
15+ <whitelist >
16+ <directory >./src/</directory >
17+ </whitelist >
18+ </filter >
19+ </phpunit >
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ require __DIR__ . '/../vendor/autoload.php ' ;
4+
5+ class TestCase extends PHPUnit_Framework_TestCase
6+ {
7+
8+ }
You can’t perform that action at this time.
0 commit comments