Skip to content

Commit

Permalink
chore: add name attr to testsuite for phpunit config (#5539)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwarajanand committed Nov 8, 2022
1 parent daef9ee commit 5cedb17
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion phpunit-perf.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Core/perf-bootstrap.php" colors="true">
<testsuites>
<testsuite>
<testsuite name="Perf Test Suite">
<directory>*/tests/Perf</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion phpunit-php5-snippets.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
colors="true"
>
<testsuites>
<testsuite>
<testsuite name="PHP5 Snippets Test Suite">
<directory>*/tests/Snippet</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion phpunit-php5-system.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Core/system-bootstrap.php" colors="true">
<testsuites>
<testsuite>
<testsuite name="PHP5 System Test Suite">
<directory>*/tests/System</directory>
<directory>tests/System</directory>
<exclude>./Compute/tests/System/*</exclude>
Expand Down
2 changes: 1 addition & 1 deletion phpunit-php5.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
bootstrap="./Core/unit-bootstrap.php"
colors="true">
<testsuites>
<testsuite>
<testsuite name="PHP5 Unit Test Suite">
<directory>*/tests/Unit</directory>
<directory>./tests/Unit</directory>
<exclude>./Compute/tests/Unit/*</exclude>
Expand Down
2 changes: 1 addition & 1 deletion phpunit-snippets.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
colors="true"
>
<testsuites>
<testsuite>
<testsuite name="Snippets Test Suite">
<directory>*/tests/Snippet</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion phpunit-system.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Core/system-bootstrap.php" colors="true">
<testsuites>
<testsuite>
<testsuite name="System Test Suite">
<directory>*/tests/System</directory>
<directory>tests/System</directory>
</testsuite>
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</exclude>
</coverage>
<testsuites>
<testsuite name="Unit Tests">
<testsuite name="Unit Test Suite">
<directory>*/tests/Unit</directory>
<directory>./tests/Unit</directory>
</testsuite>
Expand Down

0 comments on commit 5cedb17

Please sign in to comment.