program CryptoLib.Tests; {$mode objfpc}{$H+} uses Interfaces, Forms, GuiTestRunner, Asn1SequenceParserTests, DerApplicationSpecificTests, EqualsAndHashCodeTests, OIDTests, BigIntegerTests, ECAlgorithmsTests, ECPointTests, SecP384R1FieldTests, ECDsa5Tests, ECTests, NamedCurveTests, ECSchnorrTests, SignerUtilitiesTests, SecureRandomTests, DigestRandomNumberTests, FixedPointTests, AESTests, BlockCipherVectorTests, AESTestVectors, IESCipherTests, AESSICTests, MD5HMacTests, HMacTests, Pkcs5Tests, ClpFixedSecureRandom, ClpIFixedSecureRandom; {$R *.res} begin Application.Initialize; Application.CreateForm(TGuiTestRunner, TestRunner); Application.Run; end.