phpunit.xml (908B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <phpunit backupGlobals="false" 4 backupStaticAttributes="false" 5 colors="true" 6 convertErrorsToExceptions="true" 7 convertNoticesToExceptions="true" 8 convertWarningsToExceptions="true" 9 processIsolation="false" 10 stopOnFailure="false" 11 syntaxCheck="false" 12 bootstrap="tests/bootstrap.php" 13 verbose="true" 14 > 15 <testsuite name="Main Tests"> 16 <file>tests/indexClassTest.php</file> 17 </testsuite> 18 19 <testsuites> 20 <testsuite name="SSH Library Test Suite"> 21 <directory>libs/php-ssh/tests</directory> 22 </testsuite> 23 </testsuites> 24 25 <filter> 26 <whitelist> 27 <directory>libs/php-ssh/src/Ssh</directory> 28 </whitelist> 29 </filter> 30 31 <groups> 32 <exclude> 33 <group>functional</group> 34 </exclude> 35 </groups> 36 </phpunit>