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: spring-cloud-dataflow-shell-core/src/main/java/org/springframework/cloud/dataflow/shell/command/AppRegistryCommands.java
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/AbstractShellIntegrationTest.java
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -16,10 +16,10 @@
16
16
17
17
packageorg.springframework.cloud.dataflow.shell;
18
18
19
-
importorg.junit.AfterClass;
20
-
importorg.junit.BeforeClass;
21
-
importorg.junit.Rule;
22
-
importorg.junit.rules.TestName;
19
+
importorg.junit.jupiter.api.AfterAll;
20
+
importorg.junit.jupiter.api.BeforeAll;
21
+
importorg.junit.jupiter.api.BeforeEach;
22
+
importorg.junit.jupiter.api.TestInfo;
23
23
importorg.slf4j.Logger;
24
24
importorg.slf4j.LoggerFactory;
25
25
@@ -100,10 +100,14 @@ public abstract class AbstractShellIntegrationTest {
100
100
/**
101
101
* Used to capture currently executing test method.
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/ShellCommandsTests.java
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/command/AppRegistryCommandsTests.java
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/command/ConfigCommandTests.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public class ConfigCommandTests {
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/command/JobCommandTests.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@
24
24
25
25
importjavax.sql.DataSource;
26
26
27
-
importorg.junit.AfterClass;
28
-
importorg.junit.BeforeClass;
29
-
importorg.junit.Test;
27
+
importorg.junit.jupiter.api.AfterAll;
28
+
importorg.junit.jupiter.api.BeforeAll;
29
+
importorg.junit.jupiter.api.Test;
30
30
importorg.slf4j.Logger;
31
31
importorg.slf4j.LoggerFactory;
32
32
@@ -77,7 +77,7 @@ public class JobCommandTests extends AbstractShellIntegrationTest {
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/command/RuntimeCommandsTests.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ public class RuntimeCommandsTests {
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-shell-core/src/test/java/org/springframework/cloud/dataflow/shell/command/StreamCommandTests.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,9 @@
18
18
19
19
importjava.util.Arrays;
20
20
21
-
importorg.junit.After;
22
-
importorg.junit.Before;
23
-
importorg.junit.Test;
21
+
importorg.junit.jupiter.api.AfterEach;
22
+
importorg.junit.jupiter.api.BeforeEach;
23
+
importorg.junit.jupiter.api.Test;
24
24
importorg.mockito.ArgumentMatchers;
25
25
importorg.slf4j.Logger;
26
26
importorg.slf4j.LoggerFactory;
@@ -54,13 +54,13 @@ public class StreamCommandTests extends AbstractShellIntegrationTest {
0 commit comments