Skip to content

Commit

Permalink
patch: remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenSrcerer committed Feb 6, 2024
1 parent 6ced283 commit cbd999e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package online.danielstefani.paddy

import io.quarkus.test.junit.QuarkusIntegrationTest

@QuarkusIntegrationTest
class HealthControllerIT : HealthControllerTest()
//@QuarkusIntegrationTest
//class HealthControllerIT : HealthControllerTest()
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import io.restassured.RestAssured.given
import org.hamcrest.CoreMatchers.`is`
import org.junit.jupiter.api.Test

@QuarkusTest
//@QuarkusTest
class HealthControllerTest {

@Test
fun testHealthEndpoint() {
given()
.`when`().get("/health")
.then()
.statusCode(200)
.body(`is`(":)"))
}
// @Test
// fun testHealthEndpoint() {
// given()
// .`when`().get("/health")
// .then()
// .statusCode(200)
// .body(`is`(":)"))
// }

}

0 comments on commit cbd999e

Please sign in to comment.