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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c787e47
Added support for multiple occurrences of before and after blocks.
jgebal Mar 4, 2018
2399981
tmp
jgebal Mar 14, 2018
2631355
Fixed issue with null items list.
jgebal Mar 15, 2018
a05475a
Redefined event listeners mechanism.
jgebal Mar 25, 2018
f955d2a
Redefined event listeners mechanism.
jgebal Mar 25, 2018
430f76f
Fixed minor bug in XUnit reporter (showing CDATA for errors even when…
jgebal Mar 25, 2018
2537ced
Changed propagation of rollback. Now rollback will propagate from par…
jgebal Mar 29, 2018
9308662
Fixed examples.
jgebal Mar 29, 2018
17ee8cb
Fixed test for empty description in 11g.
jgebal Mar 29, 2018
93be873
Fixed test for empty description in 11g.
jgebal Mar 29, 2018
75b96c3
Fixed double warning on missing endcontext annotation.
jgebal Mar 29, 2018
a6dadcc
fix in test to overcome 11g XML missing attributes in 3.0.4
jgebal Mar 30, 2018
4bc7ced
Merge branch 'develop' into feature/support_of_context
jgebal Apr 7, 2018
8a26845
Fixes after merging from develop.
jgebal Apr 7, 2018
e9c4e80
Fixed test failure on 11g R2 - some issues with LIKE operator, long p…
jgebal Apr 7, 2018
bfbfa43
Updated documentation.
jgebal Apr 7, 2018
9cd61bf
Marking first column as bold
jgebal Apr 7, 2018
1adf35d
Changed the way reporters events are registered.
jgebal Apr 14, 2018
71d0b70
Fixed issues with comment-replace in big package specs.
jgebal Apr 14, 2018
8617613
Updated test for comments removal to include multi-line comments with…
jgebal Apr 16, 2018
51ba943
Updated documentation with new and changed annotations.
jgebal Apr 16, 2018
ad3f830
Changed behaviour for duplicate annotations - first wins.
jgebal Apr 19, 2018
4346b57
Updates to documentation.
jgebal Apr 20, 2018
b1ff0fc
Updates to documentation.
jgebal Apr 20, 2018
ab5a1ca
Updated and extended documentation for annotations.
jgebal Apr 22, 2018
e672ef0
Added description of `context` to annotations documentation.
jgebal Apr 22, 2018
9897247
Merge remote-tracking branch 'origin/develop' into feature/support_of…
jgebal Apr 22, 2018
b2df93e
Integrated with develop branch changes.
jgebal Apr 22, 2018
d604127
Removed empty header from documentation.
jgebal Apr 24, 2018
9afb7be
A bit of code cleanup and tests alignment.
jgebal Apr 25, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated test for comments removal to include multi-line comments with…
… multibyte text in it.
  • Loading branch information
jgebal committed Apr 16, 2018
commit 8617613eb382face7afbb4fc4a7d9024d813c507
16 changes: 10 additions & 6 deletions test/core/test_ut_utils.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,12 @@ create or replace package dummy as
gv_text2 varchar2(200) := '/* multi-line comment
in a multi-line
string*/';
-- ignored start of multi-line comment /*
-- ignored end of multi-line comment */
/* proper
multi-line comment */
-- ignored start of multi-line comment with multi-byte text � /*
-- ignored end of multi-line comment with multi-byte text � */
/* multi-line comment
with
multi-byte characters ���
in it */
gv_text3 varchar2(200) := 'some text'; /* multiline comment*/ --followed by single-line comment
/* multi-line comment in one line*/
gv_text4 varchar2(200) := q'{/* multi-line comment
Expand All @@ -395,10 +397,12 @@ create or replace package dummy as
gv_text2 varchar2(200) := '/* multi-line comment
in a multi-line
string*/';
-- ignored start of multi-line comment /*
-- ignored end of multi-line comment */
-- ignored start of multi-line comment with multi-byte text � /*
-- ignored end of multi-line comment with multi-byte text � */
]'||q'[



gv_text3 varchar2(200) := 'some text'; --followed by single-line comment
]'||q'[
gv_text4 varchar2(200) := q'{/* multi-line comment
Expand Down