Skip to content
Snippets Groups Projects
Commit e9357c10 authored by Sören Henning's avatar Sören Henning
Browse files

Merge branch '97-rewritte-theodolite' into 'theodolite-kotlin'

Base Template for Theodolite Kotlin Implementation

See merge request !75
parents 8e0b696d b4580707
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!75Base Template for Theodolite Kotlin Implementation
Pipeline #1467 passed
Pipeline: theodolite

#1469

    Pipeline: theodolite

    #1468

      package theodolite
      import io.quarkus.test.junit.QuarkusTest
      import io.restassured.RestAssured.given
      import org.hamcrest.CoreMatchers.`is`
      import org.junit.jupiter.api.Test
      @QuarkusTest
      class GreetingResourceTest {
      @Test
      fun testHelloEndpoint() {
      given()
      .`when`().get("/hello-resteasy")
      .then()
      .statusCode(200)
      .body(`is`("Hello RESTEasy"))
      }
      }
      \ No newline at end of file
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Please to comment