dunit_tests.pas 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. program dunit_tests;
  2. {%File '..\..\..\sdo_global.inc'}
  3. uses
  4. ActiveX,
  5. Forms,
  6. TestFrameWork,
  7. GUITestRunner,
  8. test_type in '..\test_type.pas',
  9. sdo_type in '..\..\..\sdo_type.pas',
  10. sdo in '..\..\..\sdo.pas',
  11. sdo_property in '..\..\..\sdo_property.pas',
  12. sdo_imp_utils in '..\..\..\sdo_imp_utils.pas',
  13. sdo_datafactory in '..\..\..\sdo_datafactory.pas',
  14. sdo_dataobject in '..\..\..\sdo_dataobject.pas',
  15. sdo_field_imp in '..\..\..\sdo_field_imp.pas',
  16. test_field_imp in '..\test_field_imp.pas',
  17. test_dataobject in '..\test_dataobject.pas',
  18. sdo_linked_list in '..\..\..\sdo_linked_list.pas',
  19. sdo_types in '..\..\..\sdo_types.pas',
  20. test_utils in '..\test_utils.pas',
  21. sdo_dataobjectlist in '..\..\..\sdo_dataobjectlist.pas',
  22. test_dataobjectlist in '..\test_dataobjectlist.pas',
  23. sdo_xsd_helper in '..\..\..\sdo_xsd_helper.pas',
  24. test_xsdhelper in '..\test_xsdhelper.pas',
  25. sdo_serialization in '..\..\..\sdo_serialization.pas',
  26. sdo_consts in '..\..\..\sdo_consts.pas',
  27. test_serializer in '..\test_serializer.pas',
  28. sdo_serialization_utils in '..\..\..\sdo_serialization_utils.pas',
  29. sdo_serialization_xml in '..\..\..\sdo_serialization_xml.pas',
  30. sdo_equalityhelper in '..\..\..\sdo_equalityhelper.pas',
  31. test_equalityhelper in '..\test_equalityhelper.pas',
  32. test_changesummary in '..\test_changesummary.pas',
  33. sdo_changesummary in '..\..\..\sdo_changesummary.pas',
  34. sdo_copyhelper in '..\..\..\sdo_copyhelper.pas',
  35. test_copyhelper in '..\test_copyhelper.pas',
  36. sdo_xpath_helper in '..\..\..\sdo_xpath_helper.pas',
  37. test_xpathhelper in '..\test_xpathhelper.pas',
  38. test_suite_utils in '..\test_suite_utils.pas',
  39. sdo_convert_helper in '..\..\..\sdo_convert_helper.pas',
  40. test_convert_helper in '..\test_convert_helper.pas',
  41. test_property in '..\test_property.pas',
  42. sdo_utils in '..\..\..\sdo_utils.pas',
  43. sdo_serialization_binary in '..\..\..\sdo_serialization_binary.pas',
  44. test_xsdparser in '..\test_xsdparser.pas';
  45. {$R *.res}
  46. begin
  47. Application.Initialize;
  48. GUITestRunner.RunRegisteredTests();
  49. end.