|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<phpunit |
| 3 | + backupGlobals="false" |
| 4 | + backupStaticAttributes="false" |
| 5 | + bootstrap="tests/config/bootstrap.php" |
| 6 | + colors="true" |
| 7 | + convertErrorsToExceptions="true" |
| 8 | + convertNoticesToExceptions="true" |
| 9 | + convertWarningsToExceptions="true" |
| 10 | + processIsolation="false" |
| 11 | + stopOnFailure="false" |
| 12 | + syntaxCheck="false" |
| 13 | +> |
| 14 | + <testsuites> |
| 15 | + <testsuite name="TinCanPHP Test Suite"> |
| 16 | + <directory suffix="Test.php">tests</directory> |
| 17 | + <exclude> |
| 18 | + <directory>tests/config</directory> |
| 19 | + <directory>tests/files</directory> |
| 20 | + <directory>tests/keys</directory> |
| 21 | + </exclude> |
| 22 | + </testsuite> |
| 23 | + </testsuites> |
| 24 | + |
| 25 | + <logging> |
| 26 | + <log type="coverage-text" target="php://stdout" showUncoveredFiles="false" |
| 27 | + lowUpperBound="50" highLowerBound="80" /> |
| 28 | + </logging> |
| 29 | + |
| 30 | + <filter> |
| 31 | + <whitelist addUncoveredFilesFromWhitelist="true"> |
| 32 | + <directory suffix=".php">src</directory> |
| 33 | + <exclude> |
| 34 | + <directory>doc</directory> |
| 35 | + <directory>sample</directory> |
| 36 | + <directory>tests</directory> |
| 37 | + <directory>vendor</directory> |
| 38 | + </exclude> |
| 39 | + </whitelist> |
| 40 | + </filter> |
| 41 | + |
| 42 | + <php> |
| 43 | + <const name="COMMON_NAME" value="Example User" /> |
| 44 | + <const name="COMMON_EMAIL" value="tincanphp@tincanapi.com" /> |
| 45 | + <const name="COMMON_GROUP_EMAIL" value="tincanphp+group@tincanapi.com" /> |
| 46 | + <const name="COMMON_MBOX" value="mailto:tincanphp@tincanapi.com" /> |
| 47 | + <const name="COMMON_MBOX_SHA1" value="6a7e95ee6c0e353e1eb71950a7f489c1dafa6065" /> |
| 48 | + <const name="COMMON_GROUP_MBOX" value="mailto:tincanphp+group@tincanapi.com" /> |
| 49 | + <const name="COMMON_GROUP_MBOX_SHA1" value="cbea4c1e0d11d08e36d4e9823c5be97dd0a8b8f8" /> |
| 50 | + <const name="COMMON_ACCT_HOMEPAGE" value="http://tincanapi.com" /> |
| 51 | + <const name="COMMON_ACCT_NAME" value="tincanphp-test" /> |
| 52 | + <const name="COMMON_OPENID" value="http://tincanapi.com/" /> |
| 53 | + <const name="COMMON_VERB_ID" value="http://adlnet.gov/expapi/verbs/experienced" /> |
| 54 | + <const name="COMMON_ACTIVITY_ID" value="http://tincanapi.com/TinCanPHP/Test/Activity" /> |
| 55 | + <const name="COMMON_EXTENSION_ID_1" value="http://id.tincanapi.com/extension/topic" /> |
| 56 | + <const name="COMMON_EXTENSION_ID_2" value="http://id.tincanapi.com/extension/location" /> |
| 57 | + </php> |
| 58 | +</phpunit> |
0 commit comments