dbtestframework_gui.lpr 955 B

12345678910111213141516171819202122232425262728293031323334353637
  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-testframework units
  12. ToolsUnit,
  13. // Connecors for different database-types
  14. sqldbtoolsunit,
  15. dbftoolsunit,
  16. bufdatasettoolsunit,
  17. memdstoolsunit,
  18. SdfDSToolsUnit,
  19. // DB unittest
  20. testbasics,
  21. TestFieldTypes,
  22. TestDBBasics,
  23. TestDatasources,
  24. TestBufDatasetStreams,
  25. TestSpecificTBufDataset;
  26. {$R *.res}
  27. begin
  28. Application.Initialize;
  29. Application.CreateForm(TGuiTestRunner, TestRunner);
  30. Application.Run;
  31. end.