ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/udr/testsuite/udrlib/fbudrtests.dpr
Revision: 371
Committed: Wed Jan 5 15:21:22 2022 UTC (2 years, 2 months ago) by tony
File size: 1597 byte(s)
Log Message:
Beta Release 0.1

File Contents

# Content
1 (*
2 * Firebird UDR Support (fbudrtested). 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 *)
29 library fbudrtests;
30
31 uses
32 System.SysUtils,
33 System.Classes,
34 FBUDRController,
35 udr_test01 in 'udr_test01.pas',
36 udr_test02 in 'udr_test02.pas',
37 udr_test03 in 'udr_test03.pas',
38 udr_test04 in 'udr_test04.pas';
39
40 {$R *.res}
41
42 exports firebird_udr_plugin;
43
44 begin
45 with FBUDRControllerOptions do
46 begin
47 ModuleName := 'fbudrtests';
48 AllowConfigFileOverrides := true;
49 LogFileNameTemplate := '$LOGDIR$MODULE.log';
50 LogOptions := [loLogFunctions, loLogProcedures, loLogTriggers, loDetails];
51 end;
52 end.