Files
lazarus-ccr/wst/trunk/tests/test_suite/delphi/wst_test_suite.dpr

32 lines
853 B
ObjectPascal
Raw Normal View History

{$APPTYPE CONSOLE}
program wst_test_suite;
uses
SysUtils,
ActiveX,
TestFrameWork,
TextTestRunner,
test_utilities in '..\test_utilities.pas',
testformatter_unit in '..\testformatter_unit.pas',
test_parsers in '..\test_parsers.pas',
testmetadata_unit,
test_support in '..\test_support.pas',
test_std_cursors in '..\test_std_cursors.pas',
test_rtti_filter in '..\test_rtti_filter.pas',
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';
{$R *.res}
begin
CoInitialize(nil);
try
TextTestRunner.RunRegisteredTests(rxbContinue);
finally
CoUninitialize();
end;
end.