Rename package for GraphQLTester

This commit is contained in:
Rossen Stoyanchev
2021-04-26 21:59:41 +01:00
parent b6cc9e4dd5
commit 00b01ee524
11 changed files with 31 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.graphql.web.WebGraphQLService;
import org.springframework.graphql.test.query.GraphQLTester;
import org.springframework.graphql.test.tester.GraphQLTester;
/**
* GraphQL query tests directly via {@link GraphQL}.

View File

@@ -24,7 +24,7 @@ import reactor.test.StepVerifier;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.graphql.web.WebGraphQLService;
import org.springframework.graphql.test.query.GraphQLTester;
import org.springframework.graphql.test.tester.GraphQLTester;
/**
* GraphQL subscription tests directly via {@link GraphQL}.

View File

@@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.graphql.test.query.GraphQLTester;
import org.springframework.graphql.test.tester.GraphQLTester;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.client.MockMvcWebTestClient;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.net.URI;
import java.nio.charset.StandardCharsets;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.util.List;
import java.util.Map;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.util.ArrayList;
import java.util.Collections;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.util.List;
import java.util.Map;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.lang.reflect.Type;

View File

@@ -0,0 +1,21 @@
/*
* Copyright 2020-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@NonNullApi
@NonNullFields
package org.springframework.graphql.test.tester;
import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import java.util.Arrays;
import java.util.Collections;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.graphql.test.query;
package org.springframework.graphql.test.tester;
import org.springframework.lang.Nullable;