@@ -37,11 +37,16 @@ grant execute on &&ut3_owner..ut_runner to public;
3737grant execute on &&ut3_owner..ut_file_mappings to public;
3838grant execute on &&ut3_owner..ut_file_mapping to public;
3939grant execute on &&ut3_owner..ut_file_mapper to public;
40- grant execute on &&ut3_owner..ut_key_value_pairs to public;
41- grant execute on &&ut3_owner..ut_key_value_pair to public;
4240grant execute on &&ut3_owner..ut_suite_items_info to public;
4341grant execute on &&ut3_owner..ut_suite_item_info to public;
4442
43+ -- generic types
44+ grant execute on &&ut3_owner..ut_varchar2_list to public;
45+ grant execute on &&ut3_owner..ut_varchar2_rows to public;
46+ grant execute on &&ut3_owner..ut_integer_list to public;
47+ grant execute on &&ut3_owner..ut_key_value_pairs to public;
48+ grant execute on &&ut3_owner..ut_key_value_pair to public;
49+
4550-- expectations
4651grant execute on &&ut3_owner..ut_expectation to public;
4752grant execute on &&ut3_owner..ut_expectation_compound to public;
@@ -63,37 +68,30 @@ grant execute on &&ut3_owner..ut_equal to public;
6368grant execute on &&ut3_owner..ut_have_count to public;
6469grant execute on &&ut3_owner..ut_match to public;
6570
66- -- generic types
67- grant execute on &&ut3_owner..ut_varchar2_list to public;
68- grant execute on &&ut3_owner..ut_varchar2_rows to public;
69- grant execute on &&ut3_owner..ut_integer_list to public;
7071
71- -- reporters
72- grant execute on &&ut3_owner..ut_debug_reporter to public;
72+ -- reporters - test results
7373grant execute on &&ut3_owner..ut_teamcity_reporter to public;
7474grant execute on &&ut3_owner..ut_xunit_reporter to public;
7575grant execute on &&ut3_owner..ut_junit_reporter to public;
7676grant execute on &&ut3_owner..ut_tfs_junit_reporter to public;
7777grant execute on &&ut3_owner..ut_documentation_reporter to public;
78+ grant execute on &&ut3_owner..ut_sonar_test_reporter to public;
79+ grant execute on &&ut3_owner..ut_realtime_reporter to public;
80+ -- reporters - coverage
7881grant execute on &&ut3_owner..ut_coverage_html_reporter to public;
7982grant execute on &&ut3_owner..ut_coverage_sonar_reporter to public;
8083grant execute on &&ut3_owner..ut_coveralls_reporter to public;
8184grant execute on &&ut3_owner..ut_coverage_cobertura_reporter to public;
82- grant execute on &&ut3_owner..ut_realtime_reporter to public;
83- grant execute on &&ut3_owner..ut_sonar_test_reporter to public;
85+ -- reporters - debug
86+ grant execute on &&ut3_owner..ut_debug_reporter to public;
8487
85- -- reporters base
88+ -- reporters - base types
8689grant execute on &&ut3_owner..ut_reporters to public;
8790grant execute on &&ut3_owner..ut_reporter_base to public;
8891grant execute on &&ut3_owner..ut_output_reporter_base to public;
8992grant execute on &&ut3_owner..ut_coverage_reporter_base to public;
9093grant execute on &&ut3_owner..ut_console_reporter_base to public;
9194
92- -- coverage
93- grant execute on &&ut3_owner..ut_coverage to public;
94- grant execute on &&ut3_owner..ut_coverage_options to public;
95- grant execute on &&ut3_owner..ut_coverage_helper to public;
96-
9795-- outputs
9896grant execute on &&ut3_owner..ut_output_data_row to public;
9997grant execute on &&ut3_owner..ut_output_data_rows to public;
@@ -105,17 +103,17 @@ grant execute on &&ut3_owner..ut_output_clob_table_buffer to public;
105103grant select , insert, update , delete on &&ut3_owner..ut_compound_data_tmp to public;
106104grant select , insert, update , delete on &&ut3_owner..ut_compound_data_diff_tmp to public;
107105
106+ -- needed for selecting from annotation objects
107+ grant execute on &&ut3_owner..ut_annotation_objs_cache_info to public;
108+ grant execute on &&ut3_owner..ut_annotation_obj_cache_info to public;
109+
108110-- other grants
109111grant execute on &&ut3_owner..ut_executables to public;
110112grant execute on &&ut3_owner..ut_executable_test to public;
111113grant select on &&ut3_owner..ut_suite_cache to public;
112114grant select on &&ut3_owner..ut_suite_cache_package to public;
113115grant select on &&ut3_owner..ut_suite_cache_schema to public;
114116
115- -- needed for selecting from annotation objects
116- grant execute on &&ut3_owner..ut_annotation_objs_cache_info to public;
117- grant execute on &&ut3_owner..ut_annotation_obj_cache_info to public;
118-
119117grant select , insert, delete , update on &&ut3_owner..dbmspcc_blocks to public;
120118grant select , insert, delete , update on &&ut3_owner..dbmspcc_runs to public;
121119grant select , insert, delete , update on &&ut3_owner..dbmspcc_units to public;
@@ -126,10 +124,28 @@ grant execute on &&ut3_owner..ut_run_info to public;
126124
127125prompt Creating synonyms for UTPLSQL objects in &&ut3_owner schema to PUBLIC
128126
127+ -- public API
128+ create public synonym ut for &&ut3_owner..ut;
129+ create public synonym ut_runner for &&ut3_owner..ut_runner;
130+ create public synonym ut_file_mappings for &&ut3_owner..ut_file_mappings;
131+ create public synonym ut_file_mapping for &&ut3_owner..ut_file_mapping;
132+ create public synonym ut_file_mapper for &&ut3_owner..ut_file_mapper;
133+ create public synonym ut_suite_items_info for &&ut3_owner..ut_suite_items_info;
134+ create public synonym ut_suite_item_info for &&ut3_owner..ut_suite_item_info;
135+
136+ -- generic types
137+ create public synonym ut_varchar2_list for &&ut3_owner..ut_varchar2_list;
138+ create public synonym ut_varchar2_rows for &&ut3_owner..ut_varchar2_rows;
139+ create public synonym ut_integer_list for &&ut3_owner..ut_integer_list;
140+ create public synonym ut_key_value_pairs for &&ut3_owner..ut_key_value_pairs;
141+ create public synonym ut_key_value_pair for &&ut3_owner..ut_key_value_pair;
142+
143+ -- expectations
129144create public synonym ut_expectation for &&ut3_owner..ut_expectation;
130145create public synonym ut_expectation_compound for &&ut3_owner..ut_expectation_compound;
131146create public synonym ut_expectation_json for &&ut3_owner..ut_expectation_json;
132147
148+ -- matchers
133149create public synonym be_between for &&ut3_owner..be_between;
134150create public synonym be_empty for &&ut3_owner..be_empty;
135151create public synonym be_false for &&ut3_owner..be_false;
@@ -146,41 +162,34 @@ create public synonym equal for &&ut3_owner..equal;
146162create public synonym have_count for &&ut3_owner..have_count;
147163create public synonym match for &&ut3_owner..match;
148164
149- create public synonym ut for &&ut3_owner..ut;
150- create public synonym ut_runner for &&ut3_owner..ut_runner;
151- create public synonym ut_debug_reporter for &&ut3_owner..ut_debug_reporter;
165+ -- reporters - test results
152166create public synonym ut_teamcity_reporter for &&ut3_owner..ut_teamcity_reporter;
153167create public synonym ut_xunit_reporter for &&ut3_owner..ut_xunit_reporter;
154168create public synonym ut_junit_reporter for &&ut3_owner..ut_junit_reporter;
155169create public synonym ut_tfs_junit_reporter for &&ut3_owner..ut_tfs_junit_reporter;
156170create public synonym ut_documentation_reporter for &&ut3_owner..ut_documentation_reporter;
171+ create public synonym ut_sonar_test_reporter for &&ut3_owner..ut_sonar_test_reporter;
172+ create public synonym ut_realtime_reporter for &&ut3_owner..ut_realtime_reporter;
173+ -- reporters - coverage
157174create public synonym ut_coverage_html_reporter for &&ut3_owner..ut_coverage_html_reporter;
158175create public synonym ut_coverage_sonar_reporter for &&ut3_owner..ut_coverage_sonar_reporter;
159176create public synonym ut_coveralls_reporter for &&ut3_owner..ut_coveralls_reporter;
160177create public synonym ut_coverage_cobertura_reporter for &&ut3_owner..ut_coverage_cobertura_reporter;
178+ -- reporters - debug
179+ create public synonym ut_debug_reporter for &&ut3_owner..ut_debug_reporter;
180+
181+ -- reporters - base types
161182create public synonym ut_reporters for &&ut3_owner..ut_reporters;
162- create public synonym ut_varchar2_list for &&ut3_owner..ut_varchar2_list;
163- create public synonym ut_varchar2_rows for &&ut3_owner..ut_varchar2_rows;
164- create public synonym ut_integer_list for &&ut3_owner..ut_integer_list;
165183create public synonym ut_reporter_base for &&ut3_owner..ut_reporter_base;
166184create public synonym ut_output_reporter_base for &&ut3_owner..ut_output_reporter_base;
185+
186+ -- other synonyms
167187create public synonym ut_output_data_row for &&ut3_owner..ut_output_data_row;
168188create public synonym ut_output_data_rows for &&ut3_owner..ut_output_data_rows;
169- create public synonym ut_coverage for &&ut3_owner..ut_coverage;
170- create public synonym ut_coverage_options for &&ut3_owner..ut_coverage_options;
171- create public synonym ut_coverage_helper for &&ut3_owner..ut_coverage_helper;
172189create public synonym ut_output_buffer_base for &&ut3_owner..ut_output_buffer_base;
173190create public synonym ut_output_table_buffer for &&ut3_owner..ut_output_table_buffer;
174191create public synonym ut_output_clob_table_buffer for &&ut3_owner..ut_output_clob_table_buffer;
175- create public synonym ut_file_mappings for &&ut3_owner..ut_file_mappings;
176- create public synonym ut_file_mapping for &&ut3_owner..ut_file_mapping;
177- create public synonym ut_file_mapper for &&ut3_owner..ut_file_mapper;
178- create public synonym ut_key_value_pairs for &&ut3_owner..ut_key_value_pairs;
179- create public synonym ut_key_value_pair for &&ut3_owner..ut_key_value_pair;
180- create public synonym ut_sonar_test_reporter for &&ut3_owner..ut_sonar_test_reporter;
181- create public synonym ut_suite_items_info for &&ut3_owner..ut_suite_items_info;
182- create public synonym ut_suite_item_info for &&ut3_owner..ut_suite_item_info;
183- create public synonym ut_realtime_reporter for &&ut3_owner..ut_realtime_reporter;
192+
184193create public synonym dbmspcc_blocks for &&ut3_owner..dbmspcc_blocks;
185194create public synonym dbmspcc_runs for &&ut3_owner..dbmspcc_runs;
186195create public synonym dbmspcc_units for &&ut3_owner..dbmspcc_units;
0 commit comments