Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 23c0557

Browse files
committed
Fixed formal parameter names
1 parent 3543e3d commit 23c0557

1 file changed

Lines changed: 56 additions & 52 deletions

File tree

source/core/ut_suite_manager.pkb

Lines changed: 56 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -169,87 +169,91 @@ create or replace package body ut_suite_manager is
169169
end;
170170

171171
function get_logical_suite(
172-
l_rows tt_cached_suites,
173-
l_idx pls_integer,
174-
l_level pls_integer,
175-
l_prev_level pls_integer,
176-
l_items_at_level t_item_levels
172+
a_rows tt_cached_suites,
173+
a_idx pls_integer,
174+
a_level pls_integer,
175+
a_prev_level pls_integer,
176+
a_items_at_level t_item_levels
177177
) return ut_logical_suite is
178178
begin
179179
return
180-
case l_rows(l_idx).self_type
180+
case a_rows( a_idx ).self_type
181181
when 'UT_SUITE' then
182-
case when l_prev_level > l_level then
182+
case when a_prev_level > a_level then
183183
ut_suite(
184-
self_type => l_rows(l_idx).self_type,
185-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
186-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
187-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
188-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
189-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
184+
self_type => a_rows( a_idx ).self_type,
185+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
186+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
187+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
188+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
189+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
190190
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
191-
items => l_items_at_level(l_prev_level),
192-
before_all_list => sort_by_seq_no(l_rows(l_idx).before_all_list), after_all_list => sort_by_seq_no(l_rows(l_idx).after_all_list)
191+
items => a_items_at_level(a_prev_level),
192+
before_all_list => sort_by_seq_no( a_rows( a_idx ).before_all_list), after_all_list => sort_by_seq_no(
193+
a_rows( a_idx ).after_all_list)
193194
)
194195
else
195196
ut_suite(
196-
self_type => l_rows(l_idx).self_type,
197-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
198-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
199-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
200-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
201-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
197+
self_type => a_rows( a_idx ).self_type,
198+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
199+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
200+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
201+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
202+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
202203
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
203204
items => ut_suite_items(),
204-
before_all_list => sort_by_seq_no(l_rows(l_idx).before_all_list), after_all_list => sort_by_seq_no(l_rows(l_idx).after_all_list)
205+
before_all_list => sort_by_seq_no( a_rows( a_idx ).before_all_list), after_all_list => sort_by_seq_no(
206+
a_rows( a_idx ).after_all_list)
205207
)
206208
end
207209
when 'UT_SUITE_CONTEXT' then
208-
case when l_prev_level > l_level then
210+
case when a_prev_level > a_level then
209211
ut_suite_context(
210-
self_type => l_rows(l_idx).self_type,
211-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
212-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
213-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
214-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
215-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
212+
self_type => a_rows( a_idx ).self_type,
213+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
214+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
215+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
216+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
217+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
216218
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
217-
items => l_items_at_level(l_prev_level),
218-
before_all_list => sort_by_seq_no(l_rows(l_idx).before_all_list), after_all_list => sort_by_seq_no(l_rows(l_idx).after_all_list)
219+
items => a_items_at_level(a_prev_level),
220+
before_all_list => sort_by_seq_no( a_rows( a_idx ).before_all_list), after_all_list => sort_by_seq_no(
221+
a_rows( a_idx ).after_all_list)
219222
)
220223
else
221224
ut_suite_context(
222-
self_type => l_rows(l_idx).self_type,
223-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
224-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
225-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
226-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
227-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
225+
self_type => a_rows( a_idx ).self_type,
226+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
227+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
228+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
229+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
230+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
228231
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
229232
items => ut_suite_items(),
230-
before_all_list => sort_by_seq_no(l_rows(l_idx).before_all_list), after_all_list => sort_by_seq_no(l_rows(l_idx).after_all_list)
233+
before_all_list => sort_by_seq_no( a_rows( a_idx ).before_all_list), after_all_list => sort_by_seq_no(
234+
a_rows( a_idx ).after_all_list)
231235
)
232236
end
233237
when 'UT_LOGICAL_SUITE' then
234-
case when l_prev_level > l_level then
238+
case when a_prev_level > a_level then
235239
ut_logical_suite(
236-
self_type => l_rows(l_idx).self_type,
237-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
238-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
239-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
240-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
241-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
240+
self_type => a_rows( a_idx ).self_type,
241+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
242+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
243+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
244+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
245+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
242246
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
243-
items => l_items_at_level(l_prev_level)
247+
items => a_items_at_level(a_prev_level)
244248
)
245249
else
246250
ut_logical_suite(
247-
self_type => l_rows(l_idx).self_type,
248-
object_owner => l_rows(l_idx).object_owner, object_name => lower(l_rows(l_idx).object_name),
249-
name => lower(l_rows(l_idx).name), description => l_rows(l_idx).description, path => l_rows(l_idx).path,
250-
rollback_type => l_rows(l_idx).rollback_type, disabled_flag => l_rows(l_idx).disabled_flag,
251-
line_no => l_rows(l_idx).line_no, parse_time => l_rows(l_idx).parse_time,
252-
start_time => null, end_time => null, result => null, warnings => l_rows(l_idx).warnings,
251+
self_type => a_rows( a_idx ).self_type,
252+
object_owner => a_rows( a_idx ).object_owner, object_name => lower( a_rows( a_idx ).object_name),
253+
name => lower( a_rows( a_idx ).name), description => a_rows( a_idx ).description, path => a_rows( a_idx ).path,
254+
rollback_type => a_rows( a_idx ).rollback_type, disabled_flag => a_rows( a_idx ).disabled_flag,
255+
line_no => a_rows( a_idx ).line_no, parse_time => a_rows( a_idx ).parse_time,
256+
start_time => null, end_time => null, result => null, warnings => a_rows( a_idx ).warnings,
253257
results_count => ut_results_counter(), transaction_invalidators => ut_varchar2_list(),
254258
items => ut_suite_items()
255259
)

0 commit comments

Comments
 (0)