Skip to content

Commit 9a2d654

Browse files
committed
Rename test classes so that their tests are run by Maven
1 parent fff9473 commit 9a2d654

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
@WebAppConfiguration
5959
@DirtiesContext
6060
@IntegrationTest("server.port=0")
61-
public class BasicErrorControllerIntegrationTest {
61+
public class BasicErrorControllerIntegrationTests {
6262

6363
@Value("${local.server.port}")
6464
private int port;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
3636
import static org.junit.Assert.assertTrue;
3737

3838
/**
39-
* The SampleDataGemFireApplicationTest class is a test suite with test cases testing the
39+
* The SampleDataGemFireApplicationTests class is a test suite with test cases testing the
4040
* SampleDataGemFireApplication in Spring Boot.
4141
*
4242
* @author John Blum
4343
*/
4444
@RunWith(SpringJUnit4ClassRunner.class)
4545
@SpringApplicationConfiguration(classes = SampleDataGemFireApplication.class)
46-
public class SampleDataGemFireApplicationTest {
46+
public class SampleDataGemFireApplicationTests {
4747

4848
@Autowired
4949
private GemstoneService gemstoneService;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* @author Phillip Webb
3030
*/
31-
public class ByteArrayRandomAccessDataTest {
31+
public class ByteArrayRandomAccessDataTests {
3232

3333
@Test
3434
public void testGetInputStream() throws Exception {

spring-boot/src/test/java/org/springframework/boot/ansi/AnsiOutputTest.java renamed to spring-boot/src/test/java/org/springframework/boot/ansi/AnsiOutputTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* @author Phillip Webb
3636
*/
37-
public class AnsiOutputTest {
37+
public class AnsiOutputTests {
3838

3939
@BeforeClass
4040
public static void enable() {

0 commit comments

Comments
 (0)