dbtestframework_gui.lpr 970 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. program dbtestframework_gui;
  2. {$mode objfpc}{$H+}
  3. // Note that this Lazarus project by default re-compiles all DB-units! This eases
  4. // developing, but asks some attention from the developer.
  5. // If you want to use the default, installed db-units, simply clear the search path
  6. // in the compiler-options.
  7. // It could also be that after compiling this project, you have to manually clean
  8. // the .ppu files before you can build fcl-db in the regular way. (Using fpmake)
  9. uses
  10. Interfaces, Forms, GuiTestRunner,
  11. // Generic DB test framework units
  12. ToolsUnit,
  13. // Connectors for different database-types
  14. sqldbtoolsunit,
  15. dbftoolsunit,
  16. bufdatasettoolsunit,
  17. memdstoolsunit,
  18. SdfDSToolsUnit,
  19. tcsdfdata,
  20. // DB unittest
  21. testbasics,
  22. TestFieldTypes,
  23. TestDBBasics,
  24. TestDatasources,
  25. TestBufDatasetStreams,
  26. TestSpecificTBufDataset;
  27. {$R *.res}
  28. begin
  29. Application.Initialize;
  30. Application.CreateForm(TGuiTestRunner, TestRunner);
  31. Application.Run;
  32. end.