diff --git a/integration-tests/src/main/java/io/quarkiverse/shedlock/it/ShedlockResource.java b/integration-tests/src/main/java/io/quarkiverse/shedlock/it/ShedlockResource.java deleted file mode 100644 index dc5d3c2..0000000 --- a/integration-tests/src/main/java/io/quarkiverse/shedlock/it/ShedlockResource.java +++ /dev/null @@ -1,32 +0,0 @@ -/* -* Licensed to the Apache Software Foundation (ASF) under one or more -* contributor license agreements. See the NOTICE file distributed with -* this work for additional information regarding copyright ownership. -* The ASF licenses this file to You under the Apache License, Version 2.0 -* (the "License"); you may not use this file except in compliance with -* the License. You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ -package io.quarkiverse.shedlock.it; - -import jakarta.enterprise.context.ApplicationScoped; -import jakarta.ws.rs.GET; -import jakarta.ws.rs.Path; - -@Path("/shedlock") -@ApplicationScoped -public class ShedlockResource { - // add some rest methods here - - @GET - public String hello() { - return "Hello shedlock"; - } -} diff --git a/integration-tests/src/main/resources/application.properties b/integration-tests/src/main/resources/application.properties deleted file mode 100644 index e69de29..0000000 diff --git a/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceIT.java b/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceIT.java deleted file mode 100644 index 1164d6f..0000000 --- a/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceIT.java +++ /dev/null @@ -1,7 +0,0 @@ -package io.quarkiverse.shedlock.it; - -import io.quarkus.test.junit.QuarkusIntegrationTest; - -@QuarkusIntegrationTest -public class ShedlockResourceIT extends ShedlockResourceTest { -} diff --git a/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceTest.java b/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceTest.java deleted file mode 100644 index 26e9580..0000000 --- a/integration-tests/src/test/java/io/quarkiverse/shedlock/it/ShedlockResourceTest.java +++ /dev/null @@ -1,21 +0,0 @@ -package io.quarkiverse.shedlock.it; - -import static io.restassured.RestAssured.given; -import static org.hamcrest.Matchers.is; - -import org.junit.jupiter.api.Test; - -import io.quarkus.test.junit.QuarkusTest; - -@QuarkusTest -public class ShedlockResourceTest { - - @Test - public void testHelloEndpoint() { - given() - .when().get("/shedlock") - .then() - .statusCode(200) - .body(is("Hello shedlock")); - } -}