Skip to content

Commit 050f44d

Browse files
committed
Rename WebTestClientConnectorTests to match class name
1 parent 60b5161 commit 050f44d

File tree

6 files changed

+4
-12
lines changed

6 files changed

+4
-12
lines changed

spring-test/src/test/java/org/springframework/test/web/reactive/server/DefaultControllerSpecTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@
3737

3838
/**
3939
* Unit tests for {@link DefaultControllerSpec}.
40-
*
4140
* @author Rossen Stoyanchev
42-
* @since 5.0
4341
*/
4442
public class DefaultControllerSpecTests {
4543

spring-test/src/test/java/org/springframework/test/web/reactive/server/HeaderAssertionTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@
3838

3939
/**
4040
* Unit tests for {@link HeaderAssertions}.
41-
*
4241
* @author Rossen Stoyanchev
4342
* @author Sam Brannen
44-
* @since 5.0
4543
*/
4644
public class HeaderAssertionTests {
4745

spring-test/src/test/java/org/springframework/test/web/reactive/server/HttpHandlerConnectorTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@
4545

4646
/**
4747
* Unit tests for {@link HttpHandlerConnector}.
48-
*
4948
* @author Rossen Stoyanchev
50-
* @since 5.0
5149
*/
5250
public class HttpHandlerConnectorTests {
5351

spring-test/src/test/java/org/springframework/test/web/reactive/server/StatusAssertionTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@
3232

3333
/**
3434
* Unit tests for {@link StatusAssertions}.
35-
*
3635
* @author Rossen Stoyanchev
37-
* @since 5.0
3836
*/
3937
public class StatusAssertionTests {
4038

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @author Rossen Stoyanchev
4242
* @since 5.0
4343
*/
44-
public class WebTestClientConnectorTests {
44+
public class WiretapConnectorTests {
4545

4646
@Test
4747
public void captureAndClaim() {

spring-test/src/test/java/org/springframework/test/web/reactive/server/samples/bind/HttpServerTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2017 the original author or authors.
2+
* Copyright 2002-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -60,13 +60,13 @@ public void setUp() throws Exception {
6060
}
6161

6262
@After
63-
public void tearDown() throws Exception {
63+
public void tearDown() {
6464
this.server.stop();
6565
}
6666

6767

6868
@Test
69-
public void test() throws Exception {
69+
public void test() {
7070
this.client.get().uri("/test")
7171
.exchange()
7272
.expectStatus().isOk()

0 commit comments

Comments
 (0)