Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
BC-7239 - test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mamutmk5 authored Jun 21, 2024
1 parent d5bdb54 commit a3fb0b0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/test/java/de/svs/doido/mongo/ConfigmapApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,21 @@ public void after() {


@Test
void testInteractionWithAPIServerForConfigmaps() {
void testInteractionWithGetConfigmaps() {
given()
.when().get("/configmap/namespaceA/test")
.then()
.statusCode(200)
.body("size()", is(2));
}


@Test
void testInteractionWithPostConfigmaps1() {
given()
.when().post("/configmap/namespaceA/tes2t")
.then()
.statusCode(200)
}

}

0 comments on commit a3fb0b0

Please sign in to comment.