fpc/packages/fcl-web/tests/testfpweb.lpr
2022-04-30 01:42:16 +02:00

31 lines
608 B
ObjectPascal

program testfpweb;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, tchttproute, tcjwt, jsonparser,
fpjwasha256, fpjwasha512, fpjwasha384, fpjwaes256, fpjwarsa;
type
{ TMyTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
Randomize;
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'FPCUnit Console test runner';
Application.Run;
Application.Free;
end.