Browse Source

Update documentation TODOs

Issue: SPR-9864
pull/167/head
Sam Brannen 13 years ago
parent
commit
0bb24f2922
  1. 14
      spring-test/src/main/java/org/springframework/test/context/support/AbstractGenericWebContextLoader.java
  2. 2
      spring-test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoaderUtils.java
  3. 2
      spring-test/src/main/java/org/springframework/test/context/support/AnnotationConfigWebContextLoader.java
  4. 4
      spring-test/src/main/java/org/springframework/test/context/support/XmlWebContextLoader.java
  5. 2
      spring-test/src/main/java/org/springframework/test/context/web/WebAppConfiguration.java
  6. 6
      spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java
  7. 10
      spring-test/src/main/java/org/springframework/test/context/web/WebTestExecutionListener.java

14
spring-test/src/main/java/org/springframework/test/context/support/AbstractGenericWebContextLoader.java

@ -34,7 +34,7 @@ import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.GenericWebApplicationContext; import org.springframework.web.context.support.GenericWebApplicationContext;
/** /**
* TODO [SPR-5243] Document AbstractGenericWebContextLoader. * TODO [SPR-9864] Document AbstractGenericWebContextLoader.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2
@ -47,7 +47,7 @@ public abstract class AbstractGenericWebContextLoader extends AbstractContextLoa
// --- SmartContextLoader ----------------------------------------------- // --- SmartContextLoader -----------------------------------------------
/** /**
* TODO [SPR-5243] Document overridden loadContext(MergedContextConfiguration). * TODO [SPR-9864] Document overridden loadContext(MergedContextConfiguration).
* *
* @see org.springframework.test.context.SmartContextLoader#loadContext(org.springframework.test.context.MergedContextConfiguration) * @see org.springframework.test.context.SmartContextLoader#loadContext(org.springframework.test.context.MergedContextConfiguration)
*/ */
@ -78,7 +78,7 @@ public abstract class AbstractGenericWebContextLoader extends AbstractContextLoa
} }
/** /**
* TODO [SPR-5243] Document configureWebResources(). * TODO [SPR-9864] Document configureWebResources().
*/ */
protected void configureWebResources(GenericWebApplicationContext context, protected void configureWebResources(GenericWebApplicationContext context,
WebMergedContextConfiguration webMergedConfig) { WebMergedContextConfiguration webMergedConfig) {
@ -93,20 +93,20 @@ public abstract class AbstractGenericWebContextLoader extends AbstractContextLoa
} }
/** /**
* TODO [SPR-5243] Document customizeBeanFactory(). * TODO [SPR-9864] Document customizeBeanFactory().
*/ */
protected void customizeBeanFactory(DefaultListableBeanFactory beanFactory, protected void customizeBeanFactory(DefaultListableBeanFactory beanFactory,
WebMergedContextConfiguration webMergedConfig) { WebMergedContextConfiguration webMergedConfig) {
} }
/** /**
* TODO [SPR-5243] Document loadBeanDefinitions(). * TODO [SPR-9864] Document loadBeanDefinitions().
*/ */
protected abstract void loadBeanDefinitions(GenericWebApplicationContext context, protected abstract void loadBeanDefinitions(GenericWebApplicationContext context,
WebMergedContextConfiguration webMergedConfig); WebMergedContextConfiguration webMergedConfig);
/** /**
* TODO [SPR-5243] Document customizeContext(). * TODO [SPR-9864] Document customizeContext().
*/ */
protected void customizeContext(GenericWebApplicationContext context, WebMergedContextConfiguration webMergedConfig) { protected void customizeContext(GenericWebApplicationContext context, WebMergedContextConfiguration webMergedConfig) {
} }
@ -114,7 +114,7 @@ public abstract class AbstractGenericWebContextLoader extends AbstractContextLoa
// --- ContextLoader ------------------------------------------------------- // --- ContextLoader -------------------------------------------------------
/** /**
* TODO [SPR-5243] Document overridden loadContext(String...). * TODO [SPR-9864] Document overridden loadContext(String...).
* *
* @see org.springframework.test.context.ContextLoader#loadContext(java.lang.String[]) * @see org.springframework.test.context.ContextLoader#loadContext(java.lang.String[])
*/ */

2
spring-test/src/main/java/org/springframework/test/context/support/AnnotationConfigContextLoaderUtils.java

@ -26,7 +26,7 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.util.Assert; import org.springframework.util.Assert;
/** /**
* TODO [SPR-5243] Document AnnotationConfigContextLoaderUtils. * TODO [SPR-9864] Document AnnotationConfigContextLoaderUtils.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2

2
spring-test/src/main/java/org/springframework/test/context/support/AnnotationConfigWebContextLoader.java

@ -25,7 +25,7 @@ import org.springframework.util.ObjectUtils;
import org.springframework.web.context.support.GenericWebApplicationContext; import org.springframework.web.context.support.GenericWebApplicationContext;
/** /**
* TODO [SPR-5243] Document AnnotationConfigWebContextLoader. * TODO [SPR-9864] Document AnnotationConfigWebContextLoader.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2

4
spring-test/src/main/java/org/springframework/test/context/support/XmlWebContextLoader.java

@ -21,7 +21,7 @@ import org.springframework.test.context.web.WebMergedContextConfiguration;
import org.springframework.web.context.support.GenericWebApplicationContext; import org.springframework.web.context.support.GenericWebApplicationContext;
/** /**
* TODO [SPR-5243] Document XmlWebContextLoader. * TODO [SPR-9864] Document XmlWebContextLoader.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2
@ -36,7 +36,7 @@ public class XmlWebContextLoader extends AbstractGenericWebContextLoader {
} }
/** /**
* TODO [SPR-5243] Document overridden loadBeanDefinitions(). * TODO [SPR-9864] Document overridden loadBeanDefinitions().
* *
* @see org.springframework.test.context.support.AbstractGenericWebContextLoader#loadBeanDefinitions(org.springframework.web.context.support.GenericWebApplicationContext, org.springframework.test.context.web.WebMergedContextConfiguration) * @see org.springframework.test.context.support.AbstractGenericWebContextLoader#loadBeanDefinitions(org.springframework.web.context.support.GenericWebApplicationContext, org.springframework.test.context.web.WebMergedContextConfiguration)
*/ */

2
spring-test/src/main/java/org/springframework/test/context/web/WebAppConfiguration.java

@ -24,7 +24,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
/** /**
* TODO [SPR-5243] Document WebAppConfiguration. * TODO [SPR-9864] Document WebAppConfiguration.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2

6
spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java

@ -27,7 +27,7 @@ import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* TODO [SPR-5243] Document WebMergedContextConfiguration. * TODO [SPR-9864] Document WebMergedContextConfiguration.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2
@ -40,7 +40,7 @@ public class WebMergedContextConfiguration extends MergedContextConfiguration {
/** /**
* TODO [SPR-5243] Document WebMergedContextConfiguration constructor. * TODO [SPR-9864] Document WebMergedContextConfiguration constructor.
*/ */
public WebMergedContextConfiguration( public WebMergedContextConfiguration(
Class<?> testClass, Class<?> testClass,
@ -55,7 +55,7 @@ public class WebMergedContextConfiguration extends MergedContextConfiguration {
} }
/** /**
* TODO [SPR-5243] Document getResourceBasePath(). * TODO [SPR-9864] Document getResourceBasePath().
*/ */
public String getResourceBasePath() { public String getResourceBasePath() {
return this.resourceBasePath; return this.resourceBasePath;

10
spring-test/src/main/java/org/springframework/test/context/web/WebTestExecutionListener.java

@ -33,7 +33,7 @@ import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletWebRequest; import org.springframework.web.context.request.ServletWebRequest;
/** /**
* TODO [SPR-5243] Document WebTestExecutionListener. * TODO [SPR-9864] Document WebTestExecutionListener.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2
@ -44,7 +44,7 @@ public class WebTestExecutionListener extends AbstractTestExecutionListener {
/** /**
* TODO [SPR-5243] Document overridden prepareTestInstance(). * TODO [SPR-9864] Document overridden prepareTestInstance().
* *
* @see org.springframework.test.context.support.AbstractTestExecutionListener#prepareTestInstance(org.springframework.test.context.TestContext) * @see org.springframework.test.context.support.AbstractTestExecutionListener#prepareTestInstance(org.springframework.test.context.TestContext)
*/ */
@ -54,7 +54,7 @@ public class WebTestExecutionListener extends AbstractTestExecutionListener {
} }
/** /**
* TODO [SPR-5243] Document overridden beforeTestMethod(). * TODO [SPR-9864] Document overridden beforeTestMethod().
* *
* @see org.springframework.test.context.support.AbstractTestExecutionListener#beforeTestMethod(org.springframework.test.context.TestContext) * @see org.springframework.test.context.support.AbstractTestExecutionListener#beforeTestMethod(org.springframework.test.context.TestContext)
*/ */
@ -64,7 +64,7 @@ public class WebTestExecutionListener extends AbstractTestExecutionListener {
} }
/** /**
* TODO [SPR-5243] Document setUpRequestContext(). * TODO [SPR-9864] Document setUpRequestContext().
* *
* @param testContext * @param testContext
* @param servletContext * @param servletContext
@ -107,7 +107,7 @@ public class WebTestExecutionListener extends AbstractTestExecutionListener {
} }
/** /**
* TODO [SPR-5243] Document overridden afterTestMethod(). * TODO [SPR-9864] Document overridden afterTestMethod().
* *
* @see org.springframework.test.context.support.AbstractTestExecutionListener#afterTestMethod(org.springframework.test.context.TestContext) * @see org.springframework.test.context.support.AbstractTestExecutionListener#afterTestMethod(org.springframework.test.context.TestContext)
*/ */

Loading…
Cancel
Save