mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-20 07:01:34 +01:00
31 lines
608 B
ObjectPascal
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.
|