Skip to content
Snippets Groups Projects
Commit bbeab3e0 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

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.
parent b0b0f066
No related branches found
No related tags found
No related merge requests found
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment