-
Notifications
You must be signed in to change notification settings - Fork 79
/
phpunit.xml.dist
50 lines (47 loc) · 2.31 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/config/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="TinCanPHP Test Suite">
<directory suffix="Test.php">tests</directory>
<exclude>tests/config</exclude>
<exclude>tests/files</exclude>
<exclude>tests/keys</exclude>
</testsuite>
</testsuites>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" lowUpperBound="50" highLowerBound="80" />
<!--log type="coverage-html" target="doc/coverage" showUncoveredFiles="true" lowUpperBound="50" highLowerBound="80" /-->
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<const name="COMMON_NAME" value="Example User" />
<const name="COMMON_EMAIL" value="[email protected]" />
<const name="COMMON_GROUP_EMAIL" value="[email protected]" />
<const name="COMMON_MBOX" value="mailto:[email protected]" />
<const name="COMMON_MBOX_SHA1" value="6a7e95ee6c0e353e1eb71950a7f489c1dafa6065" />
<const name="COMMON_GROUP_MBOX" value="mailto:[email protected]" />
<const name="COMMON_GROUP_MBOX_SHA1" value="cbea4c1e0d11d08e36d4e9823c5be97dd0a8b8f8" />
<const name="COMMON_ACCT_HOMEPAGE" value="http://tincanapi.com" />
<const name="COMMON_ACCT_NAME" value="tincanphp-test" />
<const name="COMMON_OPENID" value="http://tincanapi.com/" />
<const name="COMMON_VERB_ID" value="http://adlnet.gov/expapi/verbs/experienced" />
<const name="COMMON_ACTIVITY_ID" value="http://tincanapi.com/TinCanPHP/Test/Activity" />
<const name="COMMON_EXTENSION_ID_1" value="http://id.tincanapi.com/extension/topic" />
<const name="COMMON_EXTENSION_ID_2" value="http://id.tincanapi.com/extension/location" />
</php>
</phpunit>