PHP Classes

File: app/phpunit.xml

Recommend this page to a friend!
  Classes of Omar Shaban   PHP Game of Three   app/phpunit.xml   Download  
File: app/phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Game of Three
Game of Three implementation using Websockets
Author: By
Last change:
Date: 2 years ago
Size: 1,902 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> <phpunit backupGlobals = "false" backupStaticAttributes = "false" colors = "true" convertErrorsToExceptions = "true" convertNoticesToExceptions = "true" convertWarningsToExceptions = "true" processIsolation = "false" stopOnFailure = "false" syntaxCheck = "false" bootstrap = "bootstrap.php.cache" > <testsuites> <testsuite name="Project Test Suite"> <directory>../src/*/*Bundle/Tests</directory> <directory>../src/*/Bundle/*Bundle/Tests</directory> <directory>../src/GameOThree/*/Tests</directory> </testsuite> </testsuites> <logging> <log type="coverage-html" target="../web/coverage" title="hello" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/> </logging> <filter> <whitelist> <directory>../src</directory> <exclude> <directory>../src/*/*/Tests</directory> <directory>../src/*/*Bundle/Resources</directory> <directory>../src/*/*Bundle/Tests</directory> <directory>../src/*/Bundle/*Bundle/Resources</directory> <directory>../src/*/Bundle/*Bundle/Tests</directory> <directory>../src/*/Bundle/*Bundle/Twig</directory> <directory>../src/*/*Bundle/DependencyInjection</directory> <directory>../src/*/*Bundle/Controller</directory> </exclude> </whitelist> </filter> <listeners> <listener class="\Mockery\Adapter\Phpunit\TestListener"></listener> </listeners> </phpunit>