diff --git a/놀이터(예제 코드 작성)/graphql-kotlin/src/test/kotlin/com/banjjoknim/graphqlkotlin/person/PersonQueryTest.kt b/놀이터(예제 코드 작성)/graphql-kotlin/src/test/kotlin/com/banjjoknim/graphqlkotlin/person/PersonQueryTest.kt index f3e06f9..9c072aa 100644 --- a/놀이터(예제 코드 작성)/graphql-kotlin/src/test/kotlin/com/banjjoknim/graphqlkotlin/person/PersonQueryTest.kt +++ b/놀이터(예제 코드 작성)/graphql-kotlin/src/test/kotlin/com/banjjoknim/graphqlkotlin/person/PersonQueryTest.kt @@ -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) } }