-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathHashLibConsole.lpr
More file actions
41 lines (33 loc) · 750 Bytes
/
HashLibConsole.lpr
File metadata and controls
41 lines (33 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
program HashLib.Tests;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}cwstring,{$ENDIF}
consoletestrunner,
HashLibTestBase,
TestVectors,
ChecksumTests,
NullDigestTests,
Hash32Tests,
Hash64Tests,
Hash128Tests,
CryptoTests,
BitConverterTests,
PBKDF2_HMACTests,
PBKDF_Argon2Tests,
PBKDF_ScryptTests,
CRCTests,
SimdSelectSlotTests;
type
{ THashLibConsoleTestRunner }
THashLibConsoleTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behaviour
end;
var
Application: THashLibConsoleTestRunner;
begin
Application := THashLibConsoleTestRunner.Create(nil);
Application.Initialize;
Application.Run;
Application.Free;
end.