484.1.21
by Dan Garner
Got phpunit up to speed and working |
1 |
<phpunit bootstrap="tests/Bootstrap.php" |
434.1.5
by Dan Garner
Slim Debug should always be false |
2 |
colors="true" |
3 |
convertErrorsToExceptions="true" |
|
4 |
convertNoticesToExceptions="true" |
|
502.4.3
by Alex Harrington
Move logIncompleteSkipped flag to the correct place in phpunit.xml |
5 |
convertWarningsToExceptions="true"> |
561
by Dan Garner
Feature - Widget Testing Complete (#246) |
6 |
<testsuites>
|
434.1.1
by Dan Garner
Converting phpunit over to webserver-less integration testing. Commit before replacing session static with DI |
7 |
<testsuite name="Xibo Integration Test Suite"> |
561
by Dan Garner
Feature - Widget Testing Complete (#246) |
8 |
<directory suffix="Test.php">tests/integration/</directory> |
9 |
<directory suffix="Test.php">tests/integration/Widget/</directory> |
|
591.1.25
by Dan Garner
Begin some scaffolding for testing cache invalidation |
10 |
<directory suffix="Test.php">tests/integration/Cache/</directory> |
428.1.17
by Dan Garner
PHPUnit initial setup and Campaign Tests |
11 |
</testsuite>
|
561
by Dan Garner
Feature - Widget Testing Complete (#246) |
12 |
</testsuites>
|
263.1.12
by Alex Harrington
Work on DisplayGroup tests. Introduce broken group and mark tests we know are broken with that group name. Prevent Jenkins running those tests with a group filter |
13 |
<groups>
|
14 |
<exclude>
|
|
15 |
<group>broken</group> |
|
16 |
</exclude>
|
|
17 |
</groups>
|
|
428.1.17
by Dan Garner
PHPUnit initial setup and Campaign Tests |
18 |
<filter>
|
19 |
<whitelist>
|
|
20 |
<directory>lib</directory> |
|
21 |
</whitelist>
|
|
22 |
</filter>
|
|
502.4.3
by Alex Harrington
Move logIncompleteSkipped flag to the correct place in phpunit.xml |
23 |
<logging>
|
24 |
<log type="junit" target="results.xml" logIncompleteSkipped="true"/> |
|
25 |
</logging>
|
|
428.1.17
by Dan Garner
PHPUnit initial setup and Campaign Tests |
26 |
</phpunit>
|