-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpunit.xml
More file actions
49 lines (49 loc) · 2.06 KB
/
phpunit.xml
File metadata and controls
49 lines (49 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<!-- directory>./tests/</directory -->
<!--<file>./tests/TagTest.php</file>-->
<!--<file>./tests/L5Test.php</file>-->
<!--<file>./tests/CacheTest.php</file>-->
<!--<file>./tests/DependencyTest.php</file>-->
<file>./tests/PochikaTest.php</file>
<file>./tests/HelpersTest.php</file>
<file>./tests/ConfigTest.php</file>
<file>./tests/RepositoryTest.php</file>
<file>./tests/MarkdownFinderTest.php</file>
<file>./tests/EntryTest.php</file>
<file>./tests/PostRepositoryTest.php</file>
<file>./tests/PostTest.php</file>
<file>./tests/PageRepositoryTest.php</file>
<file>./tests/PageTest.php</file>
<file>./tests/PluginRepositoryTest.php</file>
<file>./tests/PluginTest.php</file>
<file>./tests/MarkdownTest.php</file>
<file>./tests/MarkdownParsedownTest.php</file>
<file>./tests/PaginatorTest.php</file>
<file>./tests/LayoutTest.php</file>
<file>./tests/ThemeTest.php</file>
<file>./tests/RendererTest.php</file>
<file>./tests/YamlTest.php</file>
<file>./tests/TwigExtensionTest.php</file>
<file>./tests/SiteTest.php</file>
<file>./tests/FeedTest.php</file>
<file>./tests/SitemapTest.php</file>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
</php>
</phpunit>