/* * Copyright 2002-2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.test.context.junit.jupiter.web; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.context.ApplicationContextInitializer; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.core.annotation.AliasFor; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit.jupiter.SpringExtension; import org.springframework.test.context.web.WebAppConfiguration; /** * {@code @SpringJUnitWebConfig} is a <em>composed annotation</em> that combines * {@link ExtendWith @ExtendWith(SpringExtension.class)} from JUnit Jupiter with * {@link ContextConfiguration @ContextConfiguration} and * {@link WebAppConfiguration @WebAppConfiguration} from the <em>Spring TestContext * Framework</em>. * * @author Sam Brannen * @since 5.0 * @see ExtendWith * @see SpringExtension * @see ContextConfiguration * @see WebAppConfiguration * @see org.springframework.test.context.junit.jupiter.SpringJUnitConfig */ @ExtendWith(SpringExtension.class) @ContextConfiguration @WebAppConfiguration @Documented @Inherited @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface SpringJUnitWebConfig { /** * Alias for {@link ContextConfiguration#classes}. */ @AliasFor(annotation = ContextConfiguration.class, attribute = "classes") Class<?>[] value() default {}; /** * Alias for {@link ContextConfiguration#classes}. */ @AliasFor(annotation = ContextConfiguration.class) Class<?>[] classes() default {}; /** * Alias for {@link ContextConfiguration#locations}. */ @AliasFor(annotation = ContextConfiguration.class) String[] locations() default {}; /** * Alias for {@link ContextConfiguration#initializers}. */ @AliasFor(annotation = ContextConfiguration.class) Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>[] initializers() default {}; /** * Alias for {@link ContextConfiguration#inheritLocations}. */ @AliasFor(annotation = ContextConfiguration.class) boolean inheritLocations() default true; /** * Alias for {@link ContextConfiguration#inheritInitializers}. */ @AliasFor(annotation = ContextConfiguration.class) boolean inheritInitializers() default true; /** * Alias for {@link ContextConfiguration#name}. */ @AliasFor(annotation = ContextConfiguration.class) String name() default ""; /** * Alias for {@link WebAppConfiguration#value}. */ @AliasFor(annotation = WebAppConfiguration.class, attribute = "value") String resourcePath() default "src/main/webapp"; }