Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / packages / fcl-base / tests / fclbase-unittests.pp
Size: Mime:
program fclbase_unittests;

{$mode objfpc}{$H+}

uses
  Classes, consoletestrunner, tests_fptemplate, tchashlist;

var
  Application: TTestRunner;

begin
  Application := TTestRunner.Create(nil);
  Application.Initialize;
  Application.Title := 'FCL-Base unittests';
  Application.Run;
  Application.Free;
end.