ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/fbintf/testsuite/testsuite.dpr
Revision: 362
Committed: Tue Dec 7 13:27:39 2021 UTC (2 years, 3 months ago) by tony
File size: 899 byte(s)
Log Message:
initiate test release

File Contents

# User Rev Content
1 tony 56 program testsuite;
2    
3     {$APPTYPE CONSOLE}
4    
5     {$R *.res}
6    
7     uses
8 tony 143 SysUtils,
9 tony 56 Test1 in 'Test1.pas',
10     Test3 in 'Test3.pas',
11     Test4 in 'Test4.pas',
12     Test5 in 'Test5.pas',
13     Test6 in 'Test6.pas',
14     Test7 in 'Test7.pas',
15     Test8 in 'Test8.pas',
16     Test9 in 'Test9.pas',
17     Test10 in 'Test10.pas',
18     Test11 in 'Test11.pas',
19     Test12 in 'Test12.pas',
20     Test13 in 'Test13.pas',
21     Test14 in 'Test14.pas',
22     Test15 in 'Test15.pas',
23     Test16 in 'Test16.pas',
24 tony 315 Test17 in 'Test17.pas',
25     Test18 in 'Test18.pas',
26     Test2 in 'Test2.pas',
27     TestApplication in 'testApp\TestApplication.pas',
28 tony 345 FBTestApp in 'FBTestApp.pas',
29     Test19 in 'Test19.pas',
30 tony 350 Test20 in 'Test20.pas',
31     Test21 in 'Test21.pas';
32 tony 56
33     var
34 tony 315 Application: TTestApplication;
35     begin
36     Application := TTestApplication.Create(nil);
37     Application.Title:='Firebird API Test Suite';
38     Application.Run;
39     Application.Free;
40 tony 56 end.