summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-03-22 14:34:05 +0300
committerAndrew Dolgov <[email protected]>2022-03-22 14:34:05 +0300
commitee549042743532ee711f3e137683709b98ffa4ba (patch)
tree223ab52f3634e05e683f1d6fadd2998428c9211e
parente35a4a1306d7fe0736d2f6ba3e0284308d29ebd0 (diff)
add phpunit configuration
-rw-r--r--phpunit.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 000000000..73efc552c
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,10 @@
+<phpunit
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd"
+ bootstrap="tests/autoload.php"
+ verbose="true">
+ <testsuite name="tt-rss">
+ <directory>tests</directory>
+</testsuite>
+
+</phpunit>