forked from utPLSQL/utPLSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunWithDocumentationReporter.sql
More file actions
93 lines (77 loc) · 1.71 KB
/
RunWithDocumentationReporter.sql
File metadata and controls
93 lines (77 loc) · 1.71 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
Set Serveroutput On Size Unlimited format truncated
set linesize 10000
set echo off
create or replace package demo_doc_reporter1 is
-- %suite
-- %displayname(Demo of documentation reporter)
-- %test
-- %displayname(A passing test sample)
procedure passing_test;
-- %test
procedure test_without_name;
-- %test
-- %displayname(A failing test exsample)
procedure failing_test;
-- %test
procedure failing_no_name;
-- %test
-- %displayname(repoting exception)
procedure failing_exception_raised;
end;
/
create or replace package body demo_doc_reporter1 is
procedure passing_test is begin null; end;
procedure test_without_name is
begin
ut.expect(1).to_equal(1);
end;
procedure failing_test is
begin
ut.expect(1).to_equal(2);
end;
procedure failing_no_name is
begin
ut.expect(sysdate).to_equal(to_char(sysdate));
end;
procedure failing_exception_raised is
l_date date;
begin
l_date := to_date('abcd');
end;
end;
/
create or replace package demo_doc_reporter2 is
-- %suite
-- %displayname(A suite package without body)
-- %test
-- %displayname(A test)
procedure test1;
-- %test
procedure test2;
end;
/
create or replace package suite_package_without_name is
-- %suite
-- %test
-- %displayname(A passing test sample)
procedure passing_test1;
-- %test
-- %displayname(A passing test sample)
procedure passing_test2;
end;
/
create or replace package body suite_package_without_name is
procedure passing_test1 is begin null; end;
procedure passing_test2 is
begin
ut.expect(1).to_equal(1);
end;
end;
/
begin
ut.run();
end;
/
drop package demo_doc_reporter2;
drop package suite_package_without_name;
drop package demo_doc_reporter1;