sdo_test_suite.lpr 993 B

123456789101112131415161718192021222324252627282930313233
  1. program sdo_test_suite;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Classes, consoletestrunner, sdo, sdo_datafactory, sdo_dataobject,
  5. sdo_dataobjectlist, sdo_field_imp, sdo_imp_utils, sdo_linked_list,
  6. sdo_property, sdo_type, test_type, test_field_imp, test_dataobjectlist,
  7. test_dataobject, test_utils, test_xsdhelper, test_serializer,
  8. test_equalityhelper, test_changesummary, test_suite_utils, sdo_xsd_helper,
  9. test_xpathhelper, sdo_xpath_helper, sdo_copyhelper, test_copyhelper,
  10. sdo_consts, sdo_equalityhelper, sdo_serialization, sdo_serialization_utils,
  11. sdo_types, sdo_utils, sdo_changesummary, sdo_convert_helper,
  12. sdo_serialization_xml, test_convert_helper, test_property;
  13. type
  14. { TLazTestRunner }
  15. TMyTestRunner = class(TTestRunner)
  16. protected
  17. // override the protected methods of TTestRunner to customize its behavior
  18. end;
  19. var
  20. Application: TMyTestRunner;
  21. begin
  22. Application := TMyTestRunner.Create(nil);
  23. Application.Initialize;
  24. Application.Run;
  25. Application.Free;
  26. end.