Merge branch '2.7.x' into 3.0.x
This commit is contained in:
commit
58e7cae20f
|
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
package org.springframework.boot.test.autoconfigure.graphql;
|
package org.springframework.boot.test.autoconfigure.graphql;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Disabled;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
|
@ -28,7 +27,6 @@ import org.springframework.graphql.test.tester.GraphQlTester;
|
||||||
* @author Brian Clozel
|
* @author Brian Clozel
|
||||||
*/
|
*/
|
||||||
@GraphQlTest(BookController.class)
|
@GraphQlTest(BookController.class)
|
||||||
@Disabled
|
|
||||||
class GraphQlTestIntegrationTests {
|
class GraphQlTestIntegrationTests {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
type Query {
|
||||||
|
bookById(id: ID): Book
|
||||||
|
}
|
||||||
|
|
||||||
|
type Book {
|
||||||
|
id: ID
|
||||||
|
name: String
|
||||||
|
pageCount: Int
|
||||||
|
author: String
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue