We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc46f8 commit 5c4addcCopy full SHA for 5c4addc
sqldev/src/test/java/org/utplsql/sqldev/test/runner/UtplsqlRunnerTest.xtend
@@ -46,6 +46,9 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
46
47
--%test(test 4 - errored)
48
PROCEDURE test_4_errored;
49
+
50
+ --%test(test 5 - warnings)
51
+ PROCEDURE test_5_warnings;
52
53
--%endcontext
54
END;
@@ -73,10 +76,17 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
73
76
BEGIN
74
77
NULL;
75
78
79
80
PROCEDURE test_4_errored IS
81
82
EXECUTE IMMEDIATE 'bla bla';
83
84
85
+ PROCEDURE test_5_warnings IS
86
+ BEGIN
87
+ COMMIT; -- will raise a warning
88
+ ut.expect(1).to_equal(1);
89
+ END;
90
91
''')
92
}
0 commit comments