Refactoring in Client and Tester builder implementations

The default transport-specific client and tester extensions contained
their builder implementations, but it makes more sense the other way
around since the extensions are mainly about the builders they provide.
This commit is contained in:
rstoyanchev
2022-03-29 14:47:35 +01:00
parent f9b84cb8d0
commit b3f13b978a
30 changed files with 1228 additions and 1209 deletions

View File

@@ -198,7 +198,7 @@ request execution as any `GraphQlTester`.
Many times it's enough to test GraphQL requests on the server side, without the use of a
client to send requests over a transport protocol. To test directly against a
`ExecutionGraphQlService`, use the `GraphQlServiceTester` extension:
`ExecutionGraphQlService`, use the `ExecutionGraphQlServiceTester` extension:
[source,java,indent=0,subs="verbatim,quotes"]
----