Files
lazarus-ccr/wst/trunk/tests/test_suite/delphi/wst_test_suite.dpr
inoussa c8c6f3c942 Part 2
runtime WSDL generation : 
  * class inheritance is handled correctly
  * record type handling
  * tests
several warnings get fixed

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@542 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-09-10 01:19:04 +00:00

32 lines
853 B
ObjectPascal

{$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.