| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit
- bootstrap = "./src/JonnyW/PhantomJs/Tests/bootstrap.php"
- backupGlobals = "false"
- backupStaticAttributes = "false"
- colors = "true"
- convertErrorsToExceptions = "true"
- convertNoticesToExceptions = "true"
- convertWarningsToExceptions = "true"
- processIsolation = "false"
- stopOnFailure = "true"
- syntaxCheck = "false">
- <testsuites>
- <testsuite name="PhantomJS Test Suite">
- <directory suffix="Test.php">./src/JonnyW/PhantomJs/Tests/*</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory suffix=".php">./src/</directory>
- <exclude>
- <directory>./src/JonnyW/PhantomJs/Tests</directory>
- </exclude>
- </whitelist>
- </filter>
- </phpunit>
|