ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/testsuite/testsuite.dpr
Revision: 350
Committed: Wed Oct 20 14:58:56 2021 UTC (2 years, 5 months ago) by tony
Original Path: ibx/trunk/fbintf/testsuite/testsuite.dpr
File size: 899 byte(s)
Log Message:
Fixed Merged

File Contents

# Content
1 program testsuite;
2
3 {$APPTYPE CONSOLE}
4
5 {$R *.res}
6
7 uses
8 SysUtils,
9 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 Test17 in 'Test17.pas',
25 Test18 in 'Test18.pas',
26 Test2 in 'Test2.pas',
27 TestApplication in 'testApp\TestApplication.pas',
28 FBTestApp in 'FBTestApp.pas',
29 Test19 in 'Test19.pas',
30 Test20 in 'Test20.pas',
31 Test21 in 'Test21.pas';
32
33 var
34 Application: TTestApplication;
35 begin
36 Application := TTestApplication.Create(nil);
37 Application.Title:='Firebird API Test Suite';
38 Application.Run;
39 Application.Free;
40 end.