123456789101112131415161718192021222324252627 |
- program testfpimage;
- {$mode objfpc}{$H+}
- uses
- sysutils,Classes, consoletestrunner, tcbarcodes, fpbarcode, barcode;
- type
- { TMyTestRunner }
- TMyTestRunner = class(TTestRunner)
- protected
- // override the protected methods of TTestRunner to customize its behavior
- end;
- var
- Application: TMyTestRunner;
- begin
- DefaultFormat:=fPlain;
- DefaultRunAllTests:=true;
- Application := TMyTestRunner.Create(nil);
- Application.Initialize;
- Application.Title := 'FPCUnit Console test runner';
- Application.Run;
- Application.Free;
- end.
|