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:
parent
f9cadfe6f9
commit
180f41c4c5
|
@ -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
|
||||
|
|
|
@ -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 {
|
Loading…
Reference in New Issue