test : Person Query 테스트 추가

This commit is contained in:
banjjoknim
2022-08-02 17:02:16 +09:00
parent 5a17add9d1
commit c3a6cbbdf9

View File

@@ -36,6 +36,7 @@ class PersonQueryTest(
.exchange()
.expectBody().json("""{"data":{"getPerson":{"name":"colt"}}}""")
.consumeWith {
// assertThat(something...)
println(it.responseHeaders)
}
}
@@ -65,6 +66,7 @@ class PersonQueryTest(
.exchange()
.expectBody().json("""{"data":{"findPerson":{"name":"banjjoknim"}}}""")
.consumeWith {
// assertThat(something...)
println(it.responseHeaders)
}
}
@@ -89,6 +91,7 @@ class PersonQueryTest(
.exchange()
.expectBody().json("""{"data":{"findPerson":null}}""")
.consumeWith {
// assertThat(something...)
println(it.responseHeaders)
}
}