1234567891011121314151617181920212223242526272829 |
- program testjs;
- {$mode objfpc}{$H+}
- uses
- Classes, consoletestrunner, tcscanner, jsparser, jsscanner, jstree, jsbase,
- tcparser;
- type
- { TLazTestRunner }
- TMyTestRunner = class(TTestRunner)
- protected
- // override the protected methods of TTestRunner to customize its behavior
- end;
- var
- Application: TMyTestRunner;
- {$IFDEF WINDOWS}{$R testjs.rc}{$ENDIF}
- begin
- Application := TMyTestRunner.Create(nil);
- Application.Initialize;
- Application.Title := 'FPCUnit Console test runner';
- Application.Run;
- Application.Free;
- end.
|