fpc/packages/fcl-base/tests/fclbase-unittests.pp
michael bf938bd538 * Add TTestBufferedFileStream
git-svn-id: trunk@42897 -
2019-09-02 07:21:20 +00:00

21 lines
441 B
ObjectPascal

program fclbase_unittests;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, tests_fptemplate, tchashlist,
testexprpars, tcmaskutils, tcinifile, tccsvreadwrite,tcbufferedfilestream;
var
Application: TTestRunner;
begin
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TTestRunner.Create(nil);
Application.Initialize;
Application.Title := 'FCL-Base unittests';
Application.Run;
Application.Free;
end.