PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Asher Wolfstein   PHP Registry with Singleton Trait   phpunit.xml   Download  
File: phpunit.xml
Role: Configuration script
Content type: text/plain
Description: Unit Testing
Class: PHP Registry with Singleton Trait
Set and get registry values using singleton trait
Author: By
Last change:
Date: 7 years ago
Size: 544 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false">
    <testsuites>
        <testsuite name="Registry Design Pattern Test Suite">
            <directory suffix=".php">./tests/</directory>
        </testsuite>
    </testsuites>
</phpunit>