Renamed @WebTests to @WebTest

@WebTests has been renamed to @WebTest so that the Gradle build does not
attempt to run it as a JUnit test.
This commit is contained in:
Sam Brannen 2013-10-28 02:04:24 +01:00
parent f9cadfe6f9
commit 180f41c4c5
2 changed files with 3 additions and 3 deletions

View File

@ -33,10 +33,10 @@ import static org.junit.Assert.*;
*
* @author Sam Brannen
* @since 4.0
* @see WebTests
* @see WebTest
*/
@RunWith(SpringJUnit4ClassRunner.class)
@WebTests
@WebTest
public class MetaAnnotationConfigWacTests {
@Autowired

View File

@ -33,7 +33,7 @@ import org.springframework.test.context.ContextConfiguration;
@WebAppConfiguration
@ContextConfiguration
@Retention(RetentionPolicy.RUNTIME)
public @interface WebTests {
public @interface WebTest {
@Configuration
static class Config {