summaryrefslogtreecommitdiff
path: root/phpunit.xml
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
commitb247471d98760f0c4eb97ab98579f9db857d762b (patch)
treea641a8f00e72323eeb5f2f76c4debc08521548e9 /phpunit.xml
parentf3c8afbcbb313e44f8baf9eb645b0367c18a1d01 (diff)
setup tests
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..35cdfbb
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
+ bootstrap="vendor/autoload.php"
+ colors="true"
+>
+ <testsuites>
+ <testsuite name="Test Suite">
+ <directory suffix="Test.php">./tests</directory>
+ </testsuite>
+ </testsuites>
+ <source>
+ <include>
+ <directory>src</directory>
+ </include>
+ </source>
+</phpunit>