Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 24c927b

Browse files
committed
refactor: junit extension naming
1 parent 1c50356 commit 24c927b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/csviri/jenvtest/junit/EnableKubeAPIServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import static java.lang.annotation.ElementType.*;
99
import static java.lang.annotation.RetentionPolicy.RUNTIME;
1010

11-
@ExtendWith(APIServerExtension.class)
11+
@ExtendWith(KubeAPIServerExtension.class)
1212
@Target({TYPE, ANNOTATION_TYPE})
1313
@Retention(RUNTIME)
1414
public @interface EnableKubeAPIServer {

src/main/java/com/csviri/jenvtest/junit/APIServerExtension.java renamed to src/main/java/com/csviri/jenvtest/junit/KubeAPIServerExtension.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import com.csviri.jenvtest.KubeAPIServer;
88

9-
public class APIServerExtension implements BeforeAllCallback, AfterAllCallback {
9+
public class KubeAPIServerExtension implements BeforeAllCallback, AfterAllCallback {
1010

1111
private KubeAPIServer kubeApiServer;
1212

0 commit comments

Comments
 (0)