ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/udr/testsuite/clienttestbed/testsuite.dpr
Revision: 392
Committed: Wed Feb 9 16:17:50 2022 UTC (2 years, 2 months ago) by tony
File size: 2063 byte(s)
Log Message:
cloneAttachment and GetServiceManager added

File Contents

# Content
1 (*
2 * Firebird UDR Support (fbudrtestbed). The fbudr components provide a set of
3 * Pascal language bindings for the Firebird API in support of server
4 * side User Defined Routines (UDRs). The fbudr package is an extension
5 * to the Firebird Pascal API.
6 *
7 * The contents of this file are subject to the Initial Developer's
8 * Public License Version 1.0 (the "License"); you may not use this
9 * file except in compliance with the License. You may obtain a copy
10 * of the License here:
11 *
12 * http://www.firebirdsql.org/index.php?op=doc&id=idpl
13 *
14 * Software distributed under the License is distributed on an "AS
15 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
16 * implied. See the License for the specific language governing rights
17 * and limitations under the License.
18 *
19 * The Initial Developer of the Original Code is Tony Whyman.
20 *
21 * The Original Code is (C) 2021 Tony Whyman, MWA Software
22 * (http://www.mwasoftware.co.uk).
23 *
24 * All Rights Reserved.
25 *
26 * Contributor(s): ______________________________________.
27 *
28 *)program testsuite;
29
30 {$APPTYPE CONSOLE}
31
32 {$R *.res}
33
34 uses
35 System.SysUtils,
36 Classes, FBUDRController,
37 FBUDRTestApp in 'FBUDRTestApp.pas',
38 Test01 in 'Test01.pas',
39 Test02 in 'Test02.pas',
40 Test03 in 'Test03.pas',
41 Test04 in 'Test04.pas',
42 TestApplication in 'TestApplication.pas',
43 udr_test01 in '..\udrlib\udr_test01.pas',
44 udr_test02 in '..\udrlib\udr_test02.pas',
45 udr_test03 in '..\udrlib\udr_test03.pas',
46 udr_test04 in '..\udrlib\udr_test04.pas';
47
48 var
49 Application: TFBUDRTestApp;
50 begin
51 with FBUDRControllerOptions do
52 begin
53 ModuleName := 'fbudrtests';
54 AllowConfigFileOverrides := true;
55 LogFileNameTemplate := 'serverside.log';
56 ConfigFileNameTemplate := 'testsuite.conf';
57 LogOptions := [loLogFunctions, loLogProcedures, loLogTriggers, loDetails,
58 loModifyQueries, loReadOnlyQueries];
59 end;
60 Application := TFBUDRTestApp.Create(nil);
61 Application.Title := 'FB UDR Test Suite';
62 Application.Run;
63 Application.Free;
64 end.

Properties

Name Value
svn:eol-style native