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',
|
2007-12-19 23:31:52 +00:00
|
|
|
testmetadata_unit,
|
2008-08-01 21:38:55 +00:00
|
|
|
test_support in '..\test_support.pas',
|
|
|
|
test_std_cursors in '..\test_std_cursors.pas',
|
|
|
|
test_rtti_filter in '..\test_rtti_filter.pas',
|
2008-09-10 01:19:04 +00:00
|
|
|
test_wst_cursors in '..\test_wst_cursors.pas',
|
|
|
|
test_generators_runtime in '..\test_generators_runtime.pas',
|
|
|
|
test_registry in '..\test_registry.pas',
|
|
|
|
test_soap_specific in '..\test_soap_specific.pas',
|
|
|
|
test_generators in '..\test_generators.pas',
|
|
|
|
test_basex_encode in '..\test_basex_encode.pas';
|
2007-07-25 00:30:44 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
CoInitialize(nil);
|
|
|
|
try
|
|
|
|
TextTestRunner.RunRegisteredTests(rxbContinue);
|
|
|
|
finally
|
|
|
|
CoUninitialize();
|
|
|
|
end;
|
|
|
|
end.
|