forked from utPLSQL/utPLSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathut_plsql2.pks
105 lines (76 loc) · 3.14 KB
/
ut_plsql2.pks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Formatted on 2001/07/13 12:29 (RevealNet Formatter v4.4.1) */
CREATE OR REPLACE PACKAGE utplsql2 &start_ge_8_1 AUTHID CURRENT_USER &end_ge_8_1
IS
/************************************************************************
GNU General Public License for utPLSQL
Copyright (C) 2000-2003
Steven Feuerstein and the utPLSQL Project
(steven@stevenfeuerstein.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (see license.txt); if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
************************************************************************
$Log$
Revision 1.2 2003/07/01 19:36:47 chrisrimmer
Added Standard Headers
************************************************************************/
V2_naming_mode constant char(2) := 'V1';
V1_naming_mode constant char(2) := 'V2';
-- Define and access "current test state" information
TYPE current_test_rt IS RECORD (
run_id utr_outcome.run_id%TYPE,
tc_run_id PLS_INTEGER, -- 2.0.9.1
suite_id ut_suite.id%TYPE,
utp_id ut_utp.id%TYPE,
unittest_id ut_unittest.id%TYPE,
testcase_id ut_testcase.id%TYPE,
outcome_id ut_outcome.id%TYPE);
FUNCTION runnum
RETURN utr_outcome.run_id%TYPE;
--2.0.9.2
PRAGMA RESTRICT_REFERENCES (runnum, WNDS);
PROCEDURE set_runnum;
FUNCTION tc_runnum
RETURN PLS_INTEGER;
PROCEDURE move_ahead_tc_runnum;
FUNCTION current_suite
RETURN ut_suite.id%TYPE;
PROCEDURE set_current_suite (suite_in IN ut_suite.id%TYPE);
FUNCTION current_utp
RETURN ut_utp.id%TYPE;
PROCEDURE set_current_utp (utp_in IN ut_utp.id%TYPE);
FUNCTION current_unittest
RETURN ut_unittest.id%TYPE;
PROCEDURE set_current_unittest (unittest_in IN ut_unittest.id%TYPE);
FUNCTION current_testcase
RETURN ut_testcase.id%TYPE;
PROCEDURE set_current_testcase (testcase_in IN ut_testcase.id%TYPE);
FUNCTION current_outcome
RETURN ut_outcome.id%TYPE;
PROCEDURE set_current_outcome (outcome_in IN ut_outcome.id%TYPE);
PROCEDURE test (
program_in IN VARCHAR2,
owner_in IN VARCHAR2 := NULL,
show_results_in IN BOOLEAN := TRUE,
naming_mode_in IN VARCHAR2 := V2_naming_mode
);
PROCEDURE testsuite (
suite_in IN VARCHAR2,
show_results_in IN BOOLEAN := TRUE,
naming_mode_in IN VARCHAR2 := V2_naming_mode
);
-- Utility programs
PROCEDURE trc;
PROCEDURE notrc;
FUNCTION tracing
RETURN BOOLEAN;
END utplsql2;
/