2007-07-25 00:30:44 +00:00
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
program wst_test_suite;
|
|
|
|
uses
|
2007-09-09 22:30:50 +00:00
|
|
|
SysUtils,
|
|
|
|
ActiveX,
|
2007-07-25 00:30:44 +00:00
|
|
|
TestFrameWork,
|
|
|
|
TextTestRunner,
|
|
|
|
test_utilities in '..\test_utilities.pas',
|
2007-09-09 22:30:50 +00:00
|
|
|
testformatter_unit in '..\testformatter_unit.pas',
|
2007-09-10 22:19:20 +00:00
|
|
|
test_parsers in '..\test_parsers.pas',
|
|
|
|
testmetadata_unit;
|
2007-07-25 00:30:44 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
CoInitialize(nil);
|
|
|
|
try
|
|
|
|
TextTestRunner.RunRegisteredTests(rxbContinue);
|
|
|
|
finally
|
|
|
|
CoUninitialize();
|
|
|
|
end;
|
|
|
|
end.
|