Issue #2105583 by neclimdul, tim.plunkett, dawehner, Mile23: Add some sane strictness to phpunit tests to catch risky tests
parent
c172aec039
commit
e746bd96f4
|
|
@ -17,6 +17,7 @@ class SimpletestPhpunitRunCommandTestWillDie extends UnitTestCase {
|
||||||
if (getenv('SimpletestPhpunitRunCommandTestWillDie') === 'fail') {
|
if (getenv('SimpletestPhpunitRunCommandTestWillDie') === 'fail') {
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
|
$this->assertTrue(TRUE, 'Assertion to ensure test pass');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,11 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
|
||||||
|
<phpunit bootstrap="tests/bootstrap.php" colors="true"
|
||||||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||||||
|
beStrictAboutOutputDuringTests="true"
|
||||||
|
beStrictAboutChangesToGlobalState="true"
|
||||||
|
checkForUnintentionallyCoveredCode="false">
|
||||||
<php>
|
<php>
|
||||||
<!-- Set error reporting to E_ALL. -->
|
<!-- Set error reporting to E_ALL. -->
|
||||||
<ini name="error_reporting" value="32767"/>
|
<ini name="error_reporting" value="32767"/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue