sdo_test_suite_gui.lpr 547 B

12345678910111213141516171819
  1. program sdo_test_suite_gui;
  2. {$mode objfpc}{$H+}
  3. uses HeapTrc, SysUtils,
  4. Interfaces, Forms, GuiTestRunner, test_xsdhelper,
  5. test_changesummary, test_convert_helper, test_copyhelper, test_dataobject,
  6. test_dataobjectlist, test_equalityhelper, test_field_imp, test_property,
  7. test_serializer, test_suite_utils, test_type, test_utils, test_xpathhelper,
  8. types;
  9. begin
  10. DeleteFile('heaptrace.txt');
  11. SetHeapTraceOutput('heaptrace.txt');
  12. Application.Initialize;
  13. Application.CreateForm(TGuiTestRunner, TestRunner);
  14. Application.Run;
  15. end.