regtests.pp 412 B

123456789101112131415161718192021222324
  1. unit regtests;
  2. {
  3. Add this unit to the main program uses clause.
  4. Add all test units to the uses clause here.
  5. Avoids messing with the uses clause of the main program(s).
  6. }
  7. // Define USEDEMOS if you want to test & compare rendering of the demos.
  8. {$DEFINE USEDEMOS}
  9. interface
  10. uses
  11. tcbasereport, tcreportstreamer, tchtmlparser
  12. {$IFDEF USEDEMOS}
  13. , tcreportgenerator
  14. {$ENDIF}
  15. ;
  16. implementation
  17. end.