Doc
Details
Grants
References
Dependencies
Code
Doc
Details
Grants
References
Dependencies
Code
| SUMMARY: FIELD | TYPE | METHOD |
| Method Summary | |
| delete_records( in_test_run_id in number ) |
| finalize |
| initialize( in_test_run_id in wt_test_runs . id % TYPE ) |
| save( in_assertion in wt_results . assertion % TYPE , in_status in wt_results . status % TYPE , in_details in wt_results . details % TYPE , in_testcase in wt_results . testcase % TYPE , in_message in wt_results . message % TYPE ) |
| WTPLSQL_RUN |
| Method Detail |
delete_records( in_test_run_id in number )
finalize
initialize( in_test_run_id in wt_test_runs . id % TYPE )
save( in_assertion in wt_results . assertion % TYPE , in_status in wt_results . status % TYPE , in_details in wt_results . details % TYPE , in_testcase in wt_results . testcase % TYPE , in_message in wt_results . message % TYPE )
WTPLSQL_RUN
| SUMMARY: FIELD | TYPE | METHOD |
| NAME | VALUE |
|---|---|
| OWNER | WTP |
| OBJECT_NAME | WT_RESULT |
| SUBOBJECT_NAME | null |
| OBJECT_ID | 41926 |
| DATA_OBJECT_ID | null |
| OBJECT_TYPE | PACKAGE |
| CREATED | 29-JUN-2018 15:09:14 |
| LAST_DDL_TIME | 29-JUN-2018 15:21:15 |
| TIMESTAMP | 2018-06-29:15:21:15 |
| STATUS | VALID |
| TEMPORARY | N |
| GENERATED | N |
| SECONDARY | N |
| NAMESPACE | 1 |
| EDITION_NAME | null |
| PRIVILEGE | GRANTEE | GRANTABLE | GRANTOR | OBJECT_NAME |
|---|---|---|---|---|
| EXECUTE | PUBLIC | NO | WTP | WT_RESULT |
| NAME | OWNER | TYPE | OBJECT_ID | STATUS | TYPE_LINK |
|---|
| NAME | OWNER | TYPE | OBJECT_ID | STATUS | TYPE_LINK |
|---|
package wt_result authid definer
as
procedure initialize
(in_test_run_id in wt_test_runs.id%TYPE);
procedure finalize;
procedure save
(in_assertion in wt_results.assertion%TYPE
,in_status in wt_results.status%TYPE
,in_details in wt_results.details%TYPE
,in_testcase in wt_results.testcase%TYPE
,in_message in wt_results.message%TYPE);
procedure delete_records
(in_test_run_id in number);
-- WtPLSQL Self Test Procedures
--
-- alter system set PLSQL_CCFLAGS =
-- 'WTPLSQL_SELFTEST:TRUE'
-- scope=BOTH;
--
$IF $$WTPLSQL_SELFTEST
$THEN
procedure WTPLSQL_RUN;
$END
end wt_result;