File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
commons/src/test/java/io/javaoperatorsdk/webhook/sample
quarkus/src/test/java/io/javaoperatorsdk/webhook/sample
spring-boot/src/test/java/io/javaoperatorsdk/webhook/sample/springboot Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2323import static org .junit .jupiter .api .Assertions .assertThrows ;
2424
2525@ SuppressWarnings ("deprecation" )
26- public class EndToEndTestBase {
26+ public abstract class AbstractEndToEndTest {
2727
2828 protected KubernetesClient client = new KubernetesClientBuilder ().build ();
2929
Original file line number Diff line number Diff line change 1010import static io .javaoperatorsdk .webhook .sample .commons .Utils .addConversionHookEndpointToCustomResource ;
1111import static io .javaoperatorsdk .webhook .sample .commons .Utils .applyAndWait ;
1212
13- class QuarkusWebhooksE2E extends EndToEndTestBase {
13+ class QuarkusWebhooksE2E extends AbstractEndToEndTest {
1414
1515 @ BeforeAll
1616 static void deployService () throws IOException {
Original file line number Diff line number Diff line change 66import org .junit .jupiter .api .BeforeAll ;
77
88import io .fabric8 .kubernetes .client .KubernetesClientBuilder ;
9+ import io .javaoperatorsdk .webhook .sample .AbstractEndToEndTest ;
910
1011import static io .javaoperatorsdk .webhook .sample .commons .Utils .addConversionHookEndpointToCustomResource ;
1112import static io .javaoperatorsdk .webhook .sample .commons .Utils .applyAndWait ;
1213
13- class SpringBootWebhooksE2E extends EndToEndTestBase {
14+ class SpringBootWebhooksE2E extends AbstractEndToEndTest {
1415
1516 @ BeforeAll
1617 static void deployService () throws IOException {
You can’t perform that action at this time.
0 commit comments