forked from utPLSQL/utPLSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuninstall.sql
More file actions
116 lines (59 loc) · 1.74 KB
/
uninstall.sql
File metadata and controls
116 lines (59 loc) · 1.74 KB
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
106
107
108
109
110
111
112
113
114
115
116
prompt Uninstalling utplsql framework
drop package ut_teamcity_reporter_helper;
drop package ut_suite_manager;
drop package ut_assert;
drop package ut;
drop type ut_expectation_varchar2;
drop type ut_expectation_timestamp_tz;
drop type ut_expectation_timestamp_ltz;
drop type ut_expectation_timestamp;
drop type ut_expectation_refcursor;
drop type ut_expectation_number;
drop type ut_expectation_date;
drop type ut_expectation_clob;
drop type ut_expectation_boolean;
drop type ut_expectation_blob;
drop type ut_expectation_anydata;
drop type ut_expectation;
drop package ut_assert_processor;
drop type match;
drop type be_between;
drop type equal;
drop type be_true;
drop type be_null;
drop type be_not_null;
drop type be_like;
drop type be_false;
drop type ut_matcher;
drop type ut_data_value_varchar2;
drop type ut_data_value_timestamp_tz;
drop type ut_data_value_timestamp_ltz;
drop type ut_data_value_timestamp;
drop type ut_data_value_number;
drop type ut_data_value_refcursor;
drop type ut_data_value_date;
drop type ut_data_value_clob;
drop type ut_data_value_boolean;
drop type ut_data_value_blob;
drop type ut_data_value_anydata;
drop type ut_data_value;
drop package ut_annotations;
drop package ut_metadata;
drop package ut_utils;
drop type ut_teamcity_reporter;
drop type ut_dbms_output_suite_reporter;
drop type ut_reporter_decorator;
drop type ut_test_suite;
drop type ut_test;
drop type ut_test_object;
drop type ut_composite_reporter;
drop type ut_reporters_list;
drop type ut_reporter force;
drop type ut_output_dbms_output;
drop type ut_output;
drop type ut_assert_list;
drop type ut_assert_result;
drop type ut_executable;
drop type ut_composite_object;
drop type ut_objects_list;
drop type ut_object;