| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- program CryptoLibConsole;
- {$mode objfpc}{$H+}
- uses
- consoletestrunner,
- Asn1SequenceParserTests,
- DerApplicationSpecificTests,
- EqualsAndHashCodeTests,
- OIDTests,
- BigIntegerTests,
- ECAlgorithmsTests,
- ECPointTests,
- SecP384R1FieldTests,
- ECDsa5Tests,
- ECTests,
- NamedCurveTests,
- SignerUtilitiesTests,
- SecureRandomTests,
- ClpFixedSecureRandom,
- ClpIFixedSecureRandom;
- type
- { TCryptoLibConsoleTestRunner }
- TCryptoLibConsoleTestRunner = class(TTestRunner)
- protected
- // override the protected methods of TTestRunner to customize its behaviour
- end;
- var
- Application: TCryptoLibConsoleTestRunner;
- begin
- Application := TCryptoLibConsoleTestRunner.Create(nil);
- Application.Initialize;
- Application.Run;
- Application.Free;
- end.
|