-
Notifications
You must be signed in to change notification settings - Fork 130
/
phpunit.xml.dist
67 lines (64 loc) · 2.51 KB
/
phpunit.xml.dist
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd">
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
</php>
<testsuites>
<testsuite name="BaserCore">
<directory>plugins/baser-core/tests/TestCase</directory>
</testsuite>
<testsuite name="BcBlog">
<directory>plugins/bc-blog/tests/TestCase</directory>
</testsuite>
<testsuite name="BcContentLink">
<directory>plugins/bc-content-link/tests/TestCase</directory>
</testsuite>
<testsuite name="BcCustomContent">
<directory>plugins/bc-custom-content/tests/TestCase</directory>
</testsuite>
<testsuite name="BcEditorTemplate">
<directory>plugins/bc-editor-template/tests/TestCase</directory>
</testsuite>
<testsuite name="BcFavorite">
<directory>plugins/bc-favorite/tests/TestCase</directory>
</testsuite>
<testsuite name="BcInstaller">
<directory>plugins/bc-installer/tests/TestCase</directory>
</testsuite>
<testsuite name="BcMail">
<directory>plugins/bc-mail/tests/TestCase</directory>
</testsuite>
<testsuite name="BcSearchIndex">
<directory>plugins/bc-search-index/tests/TestCase</directory>
</testsuite>
<testsuite name="BcThemeConfig">
<directory>plugins/bc-theme-config/tests/TestCase</directory>
</testsuite>
<testsuite name="BcThemeFile">
<directory>plugins/bc-theme-file/tests/TestCase</directory>
</testsuite>
<testsuite name="BcUploader">
<directory>plugins/bc-uploader/tests/TestCase</directory>
</testsuite>
<testsuite name="BcWidgetArea">
<directory>plugins/bc-widget-area/tests/TestCase</directory>
</testsuite>
</testsuites>
<!-- Load extension for fixtures -->
<extensions>
<bootstrap class="Cake\TestSuite\Fixture\Extension\PHPUnitExtension"/>
</extensions>
<!-- Ignore vendor tests in code coverage reports -->
<source>
<include>
<directory suffix=".php">plugins/*/src/</directory>
</include>
</source>
</phpunit>