aboutsummaryrefslogtreecommitdiff
path: root/tests/phpunit.xml
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2015-01-17 10:42:24 -0500
committerGravatar Alexis Degrugillier <github@ainw.org> 2015-01-17 10:42:24 -0500
commitb17cdadf15f21dc1e39ec3b270da6ae031072203 (patch)
tree1980a69cad84534f5574859661737d4a31db9344 /tests/phpunit.xml
parent53cdfc660fb7e7067bd73eb78e2721b97cde2740 (diff)
Add the first unit test
Add phpunit configuration to run tests and add the first running test to validate the configuration
Diffstat (limited to 'tests/phpunit.xml')
-rw-r--r--tests/phpunit.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
new file mode 100644
index 000000000..f639637ec
--- /dev/null
+++ b/tests/phpunit.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit bootstrap="bootstrap.php">
+ <filter>
+ <whitelist>
+ <directory suffix=".php">../app</directory>
+ </whitelist>
+ </filter>
+ <testsuites>
+ <testsuite name="FreshRSS">
+ <directory>app</directory>
+ </testsuite>
+ </testsuites>
+</phpunit> \ No newline at end of file