MakeTestSuite Routine
Create a named test suite out a series of tests

Unit
TestFramework

Declaration
Function MakeTestSuite(name :string; const Tests :array of ITest): ITestSuite;

Parameters
name The name the ITestSuite will have.
Tests The series of tests.

See Also




Use TTestSuite.Create(string, array of ITest) instead

Implementation

function  MakeTestSuite(name :string; const Tests :array of ITest): ITestSuite;
begin
   result := TTestSuite.Create(name, Tests);
End;


HTML generated by Time2HELP
http://www.time2help.com