-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 602 Bytes
/
phpunit.xml
File metadata and controls
20 lines (20 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true" failOnEmptyTestSuite="true">
<extensions>
<bootstrap class="Tests\Support\CoverageThresholdExtension">
<parameter name="line" value="80"/>
<parameter name="function" value="80"/>
<parameter name="class" value="80"/>
</bootstrap>
</extensions>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="Bamboo Test Suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
</phpunit>