PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Mohamed Abdulalim   Persistence   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Persistence
Retrieve database table records by a given order
Author: By
Last change:
Date: 20 days ago
Size: 749 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" stopOnFailure="false"> <testsuites> <testsuite name="unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="regression"> <directory>tests/Regression</directory> </testsuite> <testsuite name="integration"> <directory>tests/Integration</directory> </testsuite> </testsuites> <source> <include> <directory>src</directory> </include> </source> </phpunit>