diff --git a/pom.xml b/pom.xml index b1734d36e2535f1fb94a1e10baef7b6feec91ee9..2b1dcb12d9bcdeb4743d7c18d9ddb07da4e527ca 100644 --- a/pom.xml +++ b/pom.xml @@ -317,8 +317,7 @@ <defaultGoal>install</defaultGoal> <testResources> <testResource> - <!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class - (see example with ValidatorTests) --> + <!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class --> <directory>${project.basedir}/src/test/java</directory> </testResource> <testResource> diff --git a/src/test/java/org/springframework/samples/petclinic/web/VetControllerTest.java b/src/test/java/org/springframework/samples/petclinic/web/VetControllerTests.java similarity index 98% rename from src/test/java/org/springframework/samples/petclinic/web/VetControllerTest.java rename to src/test/java/org/springframework/samples/petclinic/web/VetControllerTests.java index be3ce0d4403ee9dcd2d18de06424d17debf4198a..a079ae59eefaf8e49959f149a939c16355321ee4 100644 --- a/src/test/java/org/springframework/samples/petclinic/web/VetControllerTest.java +++ b/src/test/java/org/springframework/samples/petclinic/web/VetControllerTests.java @@ -28,7 +28,7 @@ import org.springframework.web.context.WebApplicationContext; @ContextConfiguration({"classpath:spring/business-config.xml", "classpath:spring/tools-config.xml", "classpath:spring/mvc-core-config.xml"}) @WebAppConfiguration @ActiveProfiles("spring-data-jpa") -public class VetControllerTest { +public class VetControllerTests { @Autowired private VetController vetController;