mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-22 14:36:58 +00:00
Previously the static variable was reset to its initial value for each test case due to process-isolation being set to "true". Now the variable is correctly incremented however must be re-initialized at start of each test to prevent the variable to carry over to the next bridge.
13 lines
343 B
XML
13 lines
343 B
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
|
|
|
colors="true"
|
|
bootstrap="../lib/Tests.php"
|
|
processIsolation="false"
|
|
timeoutForSmallTests="1"
|
|
timeoutForMediumTests="1"
|
|
timeoutForLargeTests="6" >
|
|
|
|
</phpunit>
|