summaryrefslogtreecommitdiff
path: root/phpunit.xml
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-01-18 20:17:47 +0000
committerSam Light <samlight1994@gmail.com>2025-01-18 20:17:47 +0000
commiteb5c48b58d72d04abb093fceb32db842ec7ab5fb (patch)
tree4cf40914cba238a46dbb99c36d83e2dfb4efc3e0 /phpunit.xml
parent7ae6611fbcee86e6dae9890c27da329fa036717f (diff)
Setup testing
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..10bf8b2
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,23 @@
+<?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="Unit">
+ <directory>tests/Unit</directory>
+ </testsuite>
+ <testsuite name="Feature">
+ <directory>tests/Feature</directory>
+ </testsuite>
+ </testsuites>
+ <source>
+ <include>
+ <directory>app</directory>
+ </include>
+ </source>
+ <php>
+
+ </php>
+</phpunit>