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 46ef53c commit 4512f80Copy full SHA for 4512f80
sqldev/src/test/java/org/utplsql/sqldev/test/runner/UtplsqlRunnerTest.xtend
@@ -40,6 +40,13 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
40
--%test(test 2 - NOK)
41
PROCEDURE test_2_nok;
42
43
+ --%test(test 3 - disabled)
44
+ --%disabled
45
+ PROCEDURE test_3_disabled;
46
+
47
+ --%test(test 4 - errored)
48
+ PROCEDURE test_4_errored;
49
50
--%endcontext
51
END;
52
''')
@@ -56,6 +63,15 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
56
63
dbms_session.sleep(2);
57
64
ut.expect(1).to_equal(2);
58
65
66
67
+ PROCEDURE test_3_disabled IS
68
+ BEGIN
69
+ NULL;
70
+ END;
71
+ PROCEDURE test_4_errored IS
72
73
+ EXECUTE IMMEDIATE 'bla bla';
74
59
75
60
76
61
77
}
0 commit comments