A PHPUnit test was successfull must never be removed. Creating
such test is useless if we removed them when they report error. When an error is reported, the PHPUnit error must be kept until the code is fixed (regression) or until the test is fixed (if code has changed in a not compatible way, should be rare). But test must not be removed. The error must be reported until fixed.
This commit is contained in:
parent
b0b0f06655
commit
bbeab3e098
@ -110,9 +110,8 @@ class AllTests
|
||||
require_once dirname(__FILE__).'/CommandeTest.php';
|
||||
$suite->addTestSuite('CommandeTest');
|
||||
|
||||
// FIXME pending correction in addline() method
|
||||
//require_once dirname(__FILE__).'/CommandeFournisseurTest.php';
|
||||
//$suite->addTestSuite('CommandeFournisseurTest');
|
||||
require_once dirname(__FILE__).'/CommandeFournisseurTest.php';
|
||||
$suite->addTestSuite('CommandeFournisseurTest');
|
||||
|
||||
require_once dirname(__FILE__).'/ContratTest.php';
|
||||
$suite->addTestSuite('ContratTest');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user