File tree Expand file tree Collapse file tree 3 files changed +3
-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 +3
-3
lines changed Original file line number Diff line number Diff line change 2121import static org .awaitility .Awaitility .await ;
2222import static org .junit .jupiter .api .Assertions .assertThrows ;
2323
24- public class EndToEndTestBase {
2524@ SuppressWarnings ("deprecation" )
25+ public abstract class AbstractEndToEndTest {
2626
2727 protected KubernetesClient client = new KubernetesClientBuilder ().build ();
2828
Original file line number Diff line number Diff line change 99import static io .javaoperatorsdk .webhook .sample .commons .Utils .addConversionHookEndpointToCustomResource ;
1010import static io .javaoperatorsdk .webhook .sample .commons .Utils .applyAndWait ;
1111
12- class QuarkusWebhooksE2E extends EndToEndTestBase {
12+ class QuarkusWebhooksE2E extends AbstractEndToEndTest {
1313
1414 @ BeforeAll
1515 static void deployService () throws IOException {
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 SpringBootWebhooksE2E extends EndToEndTestBase {
13+ class SpringBootWebhooksE2E extends AbstractEndToEndTest {
1414
1515 @ BeforeAll
1616 static void deployService () throws IOException {
You can’t perform that action at this time.
0 commit comments