-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRFindUnitTests.dpr
More file actions
28 lines (24 loc) · 931 Bytes
/
Copy pathRFindUnitTests.dpr
File metadata and controls
28 lines (24 loc) · 931 Bytes
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
program RFindUnitTests;
{$IFDEF CONSOLE_TESTRUNNER}
{$APPTYPE CONSOLE}
{$ENDIF}
uses
System.SysUtils,
DUnitTestRunner,
TestUnsedUses in 'TestUnsedUses.pas',
TestPasParserpas in 'TestPasParserpas.pas',
TestPasParserFont in 'TestPasParser\TestPasParserFont.pas',
TestSearchString in 'TestSearchString.pas',
AV_Case1 in 'TestPasParser\AV_Case1.pas',
Log4Pascal in '..\Thirdy\Log4pascal\Log4Pascal.pas',
AV_Case2 in 'TestPasParser\AV_Case2.pas',
TestFindUnitUtils in 'TestFindUnitUtils.pas',
BaseUnusedUnitsSetAllUnuse in 'TestUnusedUses\BaseUnusedUnitsSetAllUnuse.pas',
BaseUnusedUnitsSetAllUse in 'TestUnusedUses\BaseUnusedUnitsSetAllUse.pas',
Interf.EnvironmentController in '..\Interfaces\Interf.EnvironmentController.pas',
TestSpringParser in 'TestSpringParser.pas';
{$R *.RES}
begin
Logger := TLogger.Create(ExtractFilePath(ParamStr(0)) + 'test.log');
DUnitTestRunner.RunRegisteredTests;
end.