Rename test classes so that their tests are run by Maven

This commit is contained in:
Andy Wilkinson 2014-10-15 16:35:48 +01:00
parent fff94733ef
commit 9a2d654eba
4 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ import static org.junit.Assert.assertThat;
@WebAppConfiguration
@DirtiesContext
@IntegrationTest("server.port=0")
public class BasicErrorControllerIntegrationTest {
public class BasicErrorControllerIntegrationTests {
@Value("${local.server.port}")
private int port;

View File

@ -36,14 +36,14 @@ import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
/**
* The SampleDataGemFireApplicationTest class is a test suite with test cases testing the
* The SampleDataGemFireApplicationTests class is a test suite with test cases testing the
* SampleDataGemFireApplication in Spring Boot.
*
* @author John Blum
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = SampleDataGemFireApplication.class)
public class SampleDataGemFireApplicationTest {
public class SampleDataGemFireApplicationTests {
@Autowired
private GemstoneService gemstoneService;

View File

@ -28,7 +28,7 @@ import static org.junit.Assert.assertThat;
*
* @author Phillip Webb
*/
public class ByteArrayRandomAccessDataTest {
public class ByteArrayRandomAccessDataTests {
@Test
public void testGetInputStream() throws Exception {

View File

@ -34,7 +34,7 @@ import static org.springframework.boot.ansi.AnsiElement.RED;
*
* @author Phillip Webb
*/
public class AnsiOutputTest {
public class AnsiOutputTests {
@BeforeClass
public static void enable() {