diff options
| author | Sam Light <sam@lightscale.co.uk> | 2025-03-30 22:22:35 +0100 | 
|---|---|---|
| committer | Sam Light <samlight1994@gmail.com> | 2025-03-30 22:22:35 +0100 | 
| commit | 429901b5871707b5c3be911c67fb1a38df04ee30 (patch) | |
| tree | 634e6a885eb1e3c2cf3551b272a96b883edcc7cc | |
| parent | 41eda0c73d0a1f5273ccacac57176f450c294e04 (diff) | |
phpunit.xml
| -rw-r--r-- | phpunit.xml | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..1d0f0ba --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,20 @@ +<?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>src</directory> +        </include> +    </source> +</phpunit> | 
