You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration-junit5/src/main/kotlin/com/github/manosbatsis/corda5/testutils/integration/junit5/AbstractCorda5Extension.kt
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ abstract class AbstractCorda5Extension : BeforeAllCallback, AfterAllCallback, Ju
33
33
val incrementedCallbackCount = extensionContext.root.getStore(GLOBAL).getOrDefault(allCallbackCounterKey, Int::class.java, 0)
Copy file name to clipboardExpand all lines: integration-junit5/src/main/kotlin/com/github/manosbatsis/corda5/testutils/integration/junit5/Corda5NodesConfig.kt
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,17 +17,23 @@ fun gradleRootDir() {
17
17
18
18
enumclassCombinedWorkerMode {
19
19
/**
20
-
* Default. Will launch, setup VNodes and (re)deploy to the Combined Worker
21
-
* as needed only once and reuse it for all tests.
20
+
* Default. Will start, setup VNodes and (re)deploy to the Combined Worker
21
+
* as needed only once for all tests. Leaves the worker running.
22
22
*/
23
23
SHARED,
24
24
25
25
/**
26
-
* Will launch, setup VNodes and (re)deploy to the Combined Worker
26
+
* Will re-launch, setup VNodes and (re)deploy to the Combined Worker
27
27
* as needed for each individual test class.
28
28
*/
29
29
PER_CLASS,
30
30
31
+
/**
32
+
* Will re-launch, setup VNodes and (re)deploy to the Combined Worker
33
+
* as needed for every JUnit LauncherSession. Stops the worker on finish.
34
+
*/
35
+
PER_LAUNCHER,
36
+
31
37
/**
32
38
* Completely disables automation for the Combined Worker to enable manual or external management.
Copy file name to clipboardExpand all lines: integration-junit5/src/main/kotlin/com/github/manosbatsis/corda5/testutils/integration/junit5/nodehandles/NodeHandlesHelper.kt
0 commit comments