fpc/packages/fcl-net/tests/tresolvertests.pp
michael 2df9168f4c * Patch from Noel Duffy to implement DNS over TCP and test
git-svn-id: trunk@48455 -
(cherry picked from commit a90315c3a0)
2023-12-18 12:14:16 +01:00

29 lines
500 B
ObjectPascal

program tresolvertests;
{$mode objfpc}{$H+}
uses
Classes, consoletestrunner, netdbtest;
type
{ TMyTestRunner }
TMyTestRunner = class(TTestRunner)
protected
// override the protected methods of TTestRunner to customize its behavior
end;
var
Application: TMyTestRunner;
begin
DefaultFormat:=fPlain;
DefaultRunAllTests:=True;
Application := TMyTestRunner.Create(nil);
Application.Initialize;
Application.Title:='resolvertests';
Application.Run;
Application.Free;
end.