73993b0b300a21460992b1df25d40c3d599f4048
12 /*----------------------------------------------------------------------*\
14 \*---------------------------------------------------------------------*/
16 bool runTestConsole(string titre
, Test::Suite
& test
)
18 cout
<< "\n[" << titre
<< "]\n" << endl
;
20 Test::TextOutput
output(Test::TextOutput::Verbose
); // Try Verbose or Terse
21 return test
.run(output
);
24 bool runTestHtml(string titre
, Test::Suite
& test
)
26 cout
<< "\n[Output HTML] : " << titre
<< endl
<< endl
;
28 string fileName
=titre
+".html";
30 const char* fileNameC
=fileName
.c_str();
41 //file << "Test"<<std::endl;
42 Test::HtmlOutput output
;
43 bool isOk
= test
.run(output
);
45 output
.generate(file
);
52 /*----------------------------------------------------------------------*\
54 \*---------------------------------------------------------------------*/