-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
50 lines (48 loc) · 2.26 KB
/
phpunit.xml
File metadata and controls
50 lines (48 loc) · 2.26 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
50
<?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" printerClass="Sempro\PHPUnitPrettyPrinter\PrettyPrinterForPhpUnit9">
<php>
<!-- <const name="EVALANCHE_HOST" value="scnem2.com"/> -->
<const name="EVALANCHE_USERNAME" value="username"/>
<const name="EVALANCHE_PASSWORD" value="password"/>
<const name="EVALANCHE_TEST_POOL" value="1234567890"/>
<const name="EVALANCHE_TEST_FOLDER" value="1234567890"/>
</php>
<testsuites>
<testsuite name="all">
<file>tests/EvalancheInterfaceTest.php</file>
<file>tests/Connectors/ArticleConnectorTest.php</file>
<file>tests/Connectors/ArticleTypeConnectorTest.php</file>
<file>tests/Connectors/ContainerTypeConnectorTest.php</file>
</testsuite>
<!-- Connectors -->
<testsuite name="connection">
<file>tests/EvalancheInterfaceTest.php</file>
</testsuite>
<testsuite name="connector--article">
<file>tests/Connectors/ArticleConnectorTest.php</file>
</testsuite>
<testsuite name="connector--article-type">
<file>tests/Connectors/ArticleTypeConnectorTest.php</file>
</testsuite>
<testsuite name="connector--container">
<file>tests/Connectors/ContainerConnectorTest.php</file>
</testsuite>
<testsuite name="connector--container-type">
<file>tests/Connectors/ContainerTypeConnectorTest.php</file>
</testsuite>
<!-- Behaviors -->
<testsuite name="behaviors--attribute">
<file>tests/Connectors/ArticleTypeConnectorTest.php</file>
<file>tests/Connectors/ContainerTypeConnectorTest.php</file>
</testsuite>
<testsuite name="behaviors--attribute-group">
<file>tests/Connectors/ArticleTypeConnectorTest.php</file>
<file>tests/Connectors/ContainerTypeConnectorTest.php</file>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./tests</directory>
</include>
</coverage>
</phpunit>