1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
{
*****************************************************************************
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
Authors: Alexander Klenin
}
program test;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, SysUtils, CustApp, FPCUnit, TestReport, TestRegistry,
PlainTestReport, UtilsTest, SourcesTest, AssertHelpers, DbTest;
// This is deliberately a console application to also test a proper
// separation of logic and presentation in TAChart units.
type
{ TAChartTests }
TAChartTests = class(TCustomApplication)
protected
procedure DoRun; override;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
end;
{ TAChartTests }
procedure TAChartTests.DoRun;
var
testResult: TTestResult = nil;
writer: TPlainResultsWriter = nil;
begin
testResult := TTestResult.Create;
writer := TPlainResultsWriter.Create(nil);
try
testResult.AddListener(writer);
GetTestRegistry.Run(testResult);
writer.WriteResult(testResult);
finally
testResult.Free;
writer.Free;
end;
Terminate;
end;
constructor TAChartTests.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
StopOnException:=True;
end;
destructor TAChartTests.Destroy;
begin
inherited Destroy;
end;
var
Application: TAChartTests;
begin
Application:=TAChartTests.Create(nil);
Application.Title := 'TAChart tests';
Application.Initialize;
Application.Run;
Application.Free;
end.
|