-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
25 lines (25 loc) · 897 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false">
<testsuites>
<testsuite name="BinarySearch">
<file>./tests/Algorithm/BinarySearchTest.php</file>
</testsuite>
<testsuite name="SelectionSort">
<file>tests/Algorithm/SelectionSortTest.php</file>
</testsuite>
<!-- <testsuite name="Adapter">
<directory>./tests/DesignPattern</directory>
</testsuite>
<testsuite name="Decorator">
<directory>./tests/DesignPattern</directory>
</testsuite>
<testsuite name="Observer">
<directory>./tests/DesignPattern</directory>
</testsuite>
<testsuite name="Strategy">
<directory>./tests/DesignPattern</directory>
</testsuite> -->
</testsuites>
</phpunit>