summaryrefslogtreecommitdiff
path: root/ssh/phpunit.xml
diff options
context:
space:
mode:
authordev2026-06-27 05:34:00 +0200
committerdev2026-06-27 05:34:00 +0200
commitb608ced142cd0527906b554e04376292f718f084 (patch)
tree6f6937b35b902db3f0bca6476000dd61e3fcc85d /ssh/phpunit.xml
parent0fe83c7f76b2fd6ce79541a71cdde5ec0b12becf (diff)
parent043dd3ed90cac67975996bd881a997f38679bacd (diff)
downloadcurious-b608ced142cd0527906b554e04376292f718f084.tar.gz
Merged cinema into mostdiscussed.com
Diffstat (limited to 'ssh/phpunit.xml')
-rw-r--r--ssh/phpunit.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/ssh/phpunit.xml b/ssh/phpunit.xml
new file mode 100644
index 0000000..383f71e
--- /dev/null
+++ b/ssh/phpunit.xml
@@ -0,0 +1,30 @@
+<?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 suffix="Test.php">./tests/Unit</directory>
+ </testsuite>
+
+ <testsuite name="Feature">
+ <directory suffix="Test.php">./tests/Feature</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist processUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">./app</directory>
+ </whitelist>
+ </filter>
+ <php>
+ <server name="APP_ENV" value="testing"/>
+ <server name="BCRYPT_ROUNDS" value="4"/>
+ <server name="CACHE_DRIVER" value="array"/>
+ <server name="DB_CONNECTION" value="sqlite"/>
+ <server name="DB_DATABASE" value=":memory:"/>
+ <server name="MAIL_MAILER" value="array"/>
+ <server name="QUEUE_CONNECTION" value="sync"/>
+ <server name="SESSION_DRIVER" value="array"/>
+ </php>
+</phpunit>