File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
java/org/utplsql/maven/plugin
resources/unit-tests/ora_stuck_timeout Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -268,9 +268,9 @@ public void skip_utplsql_tests() throws Exception {
268
268
}
269
269
270
270
/**
271
- * Enable DBMS_OUTPUT
271
+ * Set ORA Stuck Timeout
272
272
* <p>
273
- * Given : a pom.xml with dbmsOutput=true
273
+ * Given : a pom.xml with oraStuckTimeout=0
274
274
* When : pom is read
275
275
* Then : Property is set
276
276
*/
@@ -280,8 +280,9 @@ public void ora_stuck_timeout() throws Exception {
280
280
assertNotNull (utPlsqlMojo );
281
281
282
282
utPlsqlMojo .execute ();
283
- }
284
283
284
+ assertEquals (Integer .valueOf (5 ), utPlsqlMojo .oraStuckTimeout );
285
+ }
285
286
286
287
/**
287
288
* Ora Stuck Timeout
Original file line number Diff line number Diff line change 25
25
<goal >test</goal >
26
26
</goals >
27
27
<configuration >
28
- <oraStuckTimeout >0 </oraStuckTimeout >
28
+ <oraStuckTimeout >5 </oraStuckTimeout >
29
29
<ignoreFailure >false</ignoreFailure >
30
30
<paths >
31
31
<path >app</path >
You can’t perform that action at this time.
0 commit comments