Execute WebClientDataBufferAllocatingTests only during PERFORMANCE build
This commit is contained in:
parent
c256af4ef7
commit
b2704e1db6
|
|
@ -13,6 +13,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.web.reactive.function.client;
|
package org.springframework.web.reactive.function.client;
|
||||||
|
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
|
|
@ -38,9 +39,11 @@ import org.springframework.http.MediaType;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.http.client.reactive.ReactorClientHttpConnector;
|
import org.springframework.http.client.reactive.ReactorClientHttpConnector;
|
||||||
import org.springframework.http.client.reactive.ReactorResourceFactory;
|
import org.springframework.http.client.reactive.ReactorResourceFactory;
|
||||||
|
import org.springframework.tests.EnabledForTestGroups;
|
||||||
import org.springframework.web.reactive.function.UnsupportedMediaTypeException;
|
import org.springframework.web.reactive.function.UnsupportedMediaTypeException;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.springframework.tests.TestGroup.PERFORMANCE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WebClient integration tests focusing on data buffer management.
|
* WebClient integration tests focusing on data buffer management.
|
||||||
|
|
@ -48,6 +51,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* @author Rossen Stoyanchev
|
* @author Rossen Stoyanchev
|
||||||
* @author Sam Brannen
|
* @author Sam Brannen
|
||||||
*/
|
*/
|
||||||
|
@EnabledForTestGroups(PERFORMANCE)
|
||||||
public class WebClientDataBufferAllocatingTests extends AbstractDataBufferAllocatingTests {
|
public class WebClientDataBufferAllocatingTests extends AbstractDataBufferAllocatingTests {
|
||||||
|
|
||||||
private static final Duration DELAY = Duration.ofSeconds(5);
|
private static final Duration DELAY = Duration.ofSeconds(5);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue