From 4c859ed5124d12959b3631c9a757a54b2f5babc2 Mon Sep 17 00:00:00 2001 From: michaelisvy <misvy@gopivotal,com> Date: Tue, 12 May 2015 19:52:00 +0800 Subject: [PATCH] minor update on comment --- pom.xml | 3 +-- .../web/{VetControllerTest.java => VetControllerTests.java} | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename src/test/java/org/springframework/samples/petclinic/web/{VetControllerTest.java => VetControllerTests.java} (98%) diff --git a/pom.xml b/pom.xml index b1734d3..2b1dcb1 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 be3ce0d..a079ae5 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; -- GitLab