We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14c48c commit 7ab3b82Copy full SHA for 7ab3b82
phpunit.xml phpunit.xml.distphpunit.xml renamed to phpunit.xml.dist
@@ -1,15 +1,20 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit backupGlobals="false"
3
backupStaticAttributes="false"
4
+ beStrictAboutTestsThatDoNotTestAnything="false"
5
+ beStrictAboutOutputDuringTests="true"
6
bootstrap="vendor/autoload.php"
7
colors="true"
8
convertErrorsToExceptions="true"
9
convertNoticesToExceptions="true"
10
convertWarningsToExceptions="true"
11
processIsolation="false"
- stopOnFailure="false">
12
+ stopOnError="false"
13
+ stopOnFailure="false"
14
+ verbose="true"
15
+>
16
<testsuites>
- <testsuite name="main">
17
+ <testsuite name="Laravel Testing Tools Test Suite">
18
<directory suffix="Test.php">./tests</directory>
19
</testsuite>
20
</testsuites>
0 commit comments