File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ utPLSQL - Version X.X.X.X
3+ Copyright 2016 - 2017 utPLSQL Project
4+
5+ Licensed under the Apache License, Version 2.0 (the "License");
6+ you may not use this file except in compliance with the License.
7+ You may obtain a copy of the License at
8+
9+ http://www.apache.org/licenses/LICENSE-2.0
10+
11+ Unless required by applicable law or agreed to in writing, software
12+ distributed under the License is distributed on an "AS IS" BASIS,
13+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ See the License for the specific language governing permissions and
15+ limitations under the License.
16+ */
17+
118/* *
219 This script is designed to allow invocation of UTPLSQL with multiple reporters.
320 It allows saving of outcomes into multiple output files.
Original file line number Diff line number Diff line change 1- create or replace type ut_assert_results as table of ut_assert_result
1+ create or replace type ut_assert_results as
2+ /*
3+ utPLSQL - Version X.X.X.X
4+ Copyright 2016 - 2017 utPLSQL Project
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ */
18+ table of ut_assert_result
219/
Original file line number Diff line number Diff line change 1- create or replace type ut_reporters as table of ut_reporter_base;
1+ create or replace type ut_reporters as
2+ /*
3+ utPLSQL - Version X.X.X.X
4+ Copyright 2016 - 2017 utPLSQL Project
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ */
18+ table of ut_reporter_base;
219/
Original file line number Diff line number Diff line change 1- create or replace type ut_suite_items as table of ut_suite_item
2- /
1+ create or replace type ut_suite_items as
2+ /*
3+ utPLSQL - Version X.X.X.X
4+ Copyright 2016 - 2017 utPLSQL Project
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ */
18+ table of ut_suite_item
19+ /
Original file line number Diff line number Diff line change 1- create or replace type ut_varchar2_list as table of varchar2(32767)
1+ create or replace type ut_varchar2_list as
2+ /*
3+ utPLSQL - Version X.X.X.X
4+ Copyright 2016 - 2017 utPLSQL Project
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ */
18+ table of varchar2(32767)
219/
Original file line number Diff line number Diff line change 11create table ut_output_buffer_tmp (
2+ /*
3+ utPLSQL - Version X.X.X.X
4+ Copyright 2016 - 2017 utPLSQL Project
5+
6+ Licensed under the Apache License, Version 2.0 (the "License");
7+ you may not use this file except in compliance with the License.
8+ You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing, software
13+ distributed under the License is distributed on an "AS IS" BASIS,
14+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ See the License for the specific language governing permissions and
16+ limitations under the License.
17+ */
218 /*
319 * This table is not a global temporary table as it needs to allow cross-session data exchange
420 * It is used however as a temporary table with multiple writers.
Original file line number Diff line number Diff line change 1+ /*
2+ utPLSQL - Version X.X.X.X
3+ Copyright 2016 - 2017 utPLSQL Project
4+
5+ Licensed under the Apache License, Version 2.0 (the "License");
6+ you may not use this file except in compliance with the License.
7+ You may obtain a copy of the License at
8+
9+ http://www.apache.org/licenses/LICENSE-2.0
10+
11+ Unless required by applicable law or agreed to in writing, software
12+ distributed under the License is distributed on an "AS IS" BASIS,
13+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ See the License for the specific language governing permissions and
15+ limitations under the License.
16+ */
117whenever sqlerror exit failure rollback
218whenever oserror exit failure rollback
319set echo off
Original file line number Diff line number Diff line change 1+ /*
2+ utPLSQL - Version X.X.X.X
3+ Copyright 2016 - 2017 utPLSQL Project
4+
5+ Licensed under the Apache License, Version 2.0 (the "License");
6+ you may not use this file except in compliance with the License.
7+ You may obtain a copy of the License at
8+
9+ http://www.apache.org/licenses/LICENSE-2.0
10+
11+ Unless required by applicable law or agreed to in writing, software
12+ distributed under the License is distributed on an "AS IS" BASIS,
13+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ See the License for the specific language governing permissions and
15+ limitations under the License.
16+ */
117define ut3_user = ut3
218define ut3_password = ut3
319define ut3_tablespace = users
Original file line number Diff line number Diff line change 1+ /*
2+ utPLSQL - Version X.X.X.X
3+ Copyright 2016 - 2017 utPLSQL Project
4+
5+ Licensed under the Apache License, Version 2.0 (the "License");
6+ you may not use this file except in compliance with the License.
7+ You may obtain a copy of the License at
8+
9+ http://www.apache.org/licenses/LICENSE-2.0
10+
11+ Unless required by applicable law or agreed to in writing, software
12+ distributed under the License is distributed on an "AS IS" BASIS,
13+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ See the License for the specific language governing permissions and
15+ limitations under the License.
16+ */
117prompt Uninstalling UTPLSQL v3 framework
218set serveroutput on size unlimited format truncated
319set verify off
You can’t perform that action at this time.
0 commit comments