forked from VSoftTechnologies/DUnitX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DUnitX.Loggers.Text.pas
199 lines (130 loc) · 6.4 KB
/
DUnitX.Loggers.Text.pas
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{***************************************************************************}
{ }
{ DUnitX }
{ }
{ Copyright (C) 2015 Vincent Parrett & Contributors }
{ }
{ http://www.finalbuilder.com }
{ }
{ }
{***************************************************************************}
{ }
{ Licensed under the Apache License, Version 2.0 (the "License"); }
{ you may not use this file except in compliance with the License. }
{ You may obtain a copy of the License at }
{ }
{ http://www.apache.org/licenses/LICENSE-2.0 }
{ }
{ Unless required by applicable law or agreed to in writing, software }
{ distributed under the License is distributed on an "AS IS" BASIS, }
{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }
{ See the License for the specific language governing permissions and }
{ limitations under the License. }
{ }
{***************************************************************************}
unit DUnitX.Loggers.Text;
interface
uses
DUnitX.TestFramework,
classes;
{$I DUnitX.inc}
type
// Simple text file logger.
TDUnitXTextFileLogger = class(TInterfacedObject, ITestLogger)
private
//FFileName : string;
protected
procedure OnTestingStarts(const threadId, testCount, testActiveCount: Cardinal);
procedure OnStartTestFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
procedure OnSetupFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
procedure OnEndSetupFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
procedure OnBeginTest(const threadId: Cardinal; const Test: ITestInfo);
procedure OnSetupTest(const threadId: Cardinal; const Test: ITestInfo);
procedure OnEndSetupTest(const threadId: Cardinal; const Test: ITestInfo);
procedure OnExecuteTest(const threadId : Cardinal; const Test: ITestInfo);
procedure OnTestSuccess(const threadId: Cardinal; const Test: ITestResult);
procedure OnTestError(const threadId: Cardinal; const Error: ITestError);
procedure OnTestFailure(const threadId: Cardinal; const Failure: ITestError);
procedure OnTestIgnored(const threadId: Cardinal; const AIgnored: ITestResult);
procedure OnTestMemoryLeak(const threadId : Cardinal; const Test: ITestResult);
procedure OnLog(const logType: TLogLevel; const msg : string);
procedure OnTeardownTest(const threadId: Cardinal; const Test: ITestInfo);
procedure OnEndTeardownTest(const threadId: Cardinal; const Test: ITestInfo);
procedure OnEndTest(const threadId: Cardinal; const Test: ITestResult);
procedure OnTearDownFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
procedure OnEndTearDownFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
procedure OnEndTestFixture(const threadId: Cardinal; const results: IFixtureResult);
procedure OnTestingEnds(const RunResults: IRunResults);
public
constructor Create(const AFileName: string; const overwrite : boolean = true);
end;
implementation
{ TDUnitXTextFileLogger }
constructor TDUnitXTextFileLogger.Create(const AFileName : string; const overwrite : boolean);
begin
end;
procedure TDUnitXTextFileLogger.OnEndSetupFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnEndSetupTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnEndTearDownFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnEndTeardownTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnEndTest(const threadId: Cardinal; const Test: ITestResult);
begin
end;
procedure TDUnitXTextFileLogger.OnEndTestFixture(const threadId: Cardinal; const results: IFixtureResult);
begin
end;
procedure TDUnitXTextFileLogger.OnExecuteTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnTestError(const threadId: Cardinal; const Error: ITestError);
begin
end;
procedure TDUnitXTextFileLogger.OnTestFailure(const threadId: Cardinal; const Failure: ITestError);
begin
end;
procedure TDUnitXTextFileLogger.OnTestIgnored(const threadId: Cardinal; const AIgnored: ITestResult);
begin
end;
procedure TDUnitXTextFileLogger.OnLog(const logType : TLogLevel; const msg: string);
begin
end;
procedure TDUnitXTextFileLogger.OnSetupFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnSetupTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnBeginTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnStartTestFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnTestSuccess(const threadId: Cardinal; const Test: ITestResult);
begin
end;
procedure TDUnitXTextFileLogger.OnTearDownFixture(const threadId: Cardinal; const fixture: ITestFixtureInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnTeardownTest(const threadId: Cardinal; const Test: ITestInfo);
begin
end;
procedure TDUnitXTextFileLogger.OnTestingEnds(const RunResults: IRunResults);
begin
end;
procedure TDUnitXTextFileLogger.OnTestingStarts(const threadId, testCount, testActiveCount : Cardinal);
begin
end;
procedure TDUnitXTextFileLogger.OnTestMemoryLeak(const threadId: Cardinal; const Test: ITestResult);
begin
end;
end.