ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/fbintf/testsuite/testsuite.dpr
Revision: 363
Committed: Tue Dec 7 13:30:05 2021 UTC (2 years, 4 months ago) by tony
File size: 926 byte(s)
Log Message:
add fbintf

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 tony 363 Test21 in 'Test21.pas',
32     Test22 in 'Test22.pas';
33 tony 56
34     var
35 tony 315 Application: TTestApplication;
36     begin
37     Application := TTestApplication.Create(nil);
38     Application.Title:='Firebird API Test Suite';
39     Application.Run;
40     Application.Free;
41 tony 56 end.