From b2c723a76ea740264084754d535ca7f44223ee29 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 20 Jul 2009 12:14:56 +0000 Subject: [PATCH] [SPR-5916] polishing. --- .../test/context/TestContext.java | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/TestContext.java b/org.springframework.test/src/main/java/org/springframework/test/context/TestContext.java index a8e8d7b321..5046af26ab 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/context/TestContext.java +++ b/org.springframework.test/src/main/java/org/springframework/test/context/TestContext.java @@ -141,11 +141,10 @@ public class TestContext extends AttributeAccessorSupport { *
  • If a loader class is not specified, the class hierarchy * will be traversed to find a parent class annotated with * @ContextConfiguration; go to step #1.
  • + *
  • If no explicit loader class is found after traversing + * the class hierarchy, an attempt will be made to load and return the class + * with the supplied defaultContextLoaderClassName.
  • * - *

    - * If no explicit loader class is found after traversing the - * class hierarchy, an attempt will be made to load and return the class - * with the supplied defaultContextLoaderClassName. * * @param clazz the class for which to retrieve ContextLoader * class; must not be null @@ -270,16 +269,16 @@ public class TestContext extends AttributeAccessorSupport { } /** - * Build an ApplicationContext for this test context using the configured - * ContextLoader and resource locations. + * Load an ApplicationContext for this test context using the + * configured ContextLoader and resource locations. * - * @throws Exception if an error occurs while building the application + * @throws Exception if an error occurs while loading the application * context */ private ApplicationContext loadApplicationContext() throws Exception { - Assert.notNull(this.contextLoader, "Can not build an ApplicationContext with a NULL 'contextLoader'. " + Assert.notNull(this.contextLoader, "Can not load an ApplicationContext with a NULL 'contextLoader'. " + "Consider annotating your test class with @ContextConfiguration."); - Assert.notNull(this.locations, "Can not build an ApplicationContext with a NULL 'locations' array. " + Assert.notNull(this.locations, "Can not load an ApplicationContext with a NULL 'locations' array. " + "Consider annotating your test class with @ContextConfiguration."); return this.contextLoader.loadContext(this.locations); } @@ -296,8 +295,7 @@ public class TestContext extends AttributeAccessorSupport { * Get the {@link ApplicationContext application context} for this test * context, possibly cached. * - * @return the application context; may be null if the current - * test context is not configured to use an application context + * @return the application context * @throws IllegalStateException if an error occurs while retrieving the * application context */