Skip to content

Commit 51765bf

Browse files
committed
introduce EnableMockOperator annotation
1 parent b2b8c89 commit 51765bf

File tree

1 file changed

+12
-0
lines changed
  • operator-framework-spring-boot-starter-test/src/main/java/io/javaoperatorsdk/operator/springboot/starter/test

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package io.javaoperatorsdk.operator.springboot.starter.test;
2+
3+
4+
import java.lang.annotation.Retention;
5+
import java.lang.annotation.RetentionPolicy;
6+
import org.springframework.context.annotation.Import;
7+
8+
@Retention(RetentionPolicy.RUNTIME)
9+
@Import(TestConfiguration.class)
10+
public @interface EnableMockOperator {
11+
12+
}

0 commit comments

Comments
 (0)