Skip to content

Commit 5debd5c

Browse files
committed
Move phpunit configuration to base directory.
1 parent 1507595 commit 5debd5c

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

package.xml

-2
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,6 @@
10331033
<file name="AllTests.php" role="test" />
10341034
<file name="Autoload.php" role="test" />
10351035
<file name="bootstrap.php" role="test" />
1036-
<file name="phpunit.xml" role="test" />
10371036
</dir> <!-- /test/Imp -->
10381037
</dir> <!-- /test -->
10391038
<dir name="themes">
@@ -2114,7 +2113,6 @@
21142113
<install as="Imp/AllTests.php" name="test/Imp/AllTests.php" />
21152114
<install as="Imp/Autoload.php" name="test/Imp/Autoload.php" />
21162115
<install as="Imp/bootstrap.php" name="test/Imp/bootstrap.php" />
2117-
<install as="Imp/phpunit.xml" name="test/Imp/phpunit.xml" />
21182116
<install as="Imp/fixtures/test.eml" name="test/Imp/fixtures/test.eml" />
21192117
<install as="Imp/fixtures/test.mbox" name="test/Imp/fixtures/test.mbox" />
21202118
<install as="Imp/Stub/HtmlViewer.php" name="test/Imp/Stub/HtmlViewer.php" />

phpunit.xml.dist

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<phpunit bootstrap="test/Imp/bootstrap.php" colors="true">
2+
<testsuites>
3+
<testsuite>
4+
<directory>test</directory>
5+
</testsuite>
6+
</testsuites>
7+
<filter>
8+
<whitelist>
9+
<directory suffix=".php">lib</directory>
10+
</whitelist>
11+
</filter>
12+
</phpunit>

test/Imp/phpunit.xml

-8
This file was deleted.

0 commit comments

Comments
 (0)