[SPR-5916] polishing.
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1550 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
6d0e3ced2e
commit
b9f726f7aa
|
|
@ -17,14 +17,13 @@
|
||||||
package org.springframework.test.context.junit4;
|
package org.springframework.test.context.junit4;
|
||||||
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
import org.springframework.test.context.ContextConfiguration;
|
import org.springframework.test.context.ContextConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extension of {@link SpringJUnit4ClassRunnerAppCtxTests}, which verifies that
|
* Extension of {@link SpringJUnit4ClassRunnerAppCtxTests}, which verifies that
|
||||||
* we can specify an explicit, <em>absolute path</em> location for our
|
* we can specify an explicit, <em>absolute path</em> location for our
|
||||||
* application context.
|
* application context.
|
||||||
*
|
*
|
||||||
* @author Sam Brannen
|
* @author Sam Brannen
|
||||||
* @since 2.5
|
* @since 2.5
|
||||||
* @see SpringJUnit4ClassRunnerAppCtxTests
|
* @see SpringJUnit4ClassRunnerAppCtxTests
|
||||||
|
|
@ -32,7 +31,7 @@ import org.springframework.test.context.ContextConfiguration;
|
||||||
* @see RelativePathSpringJUnit4ClassRunnerAppCtxTests
|
* @see RelativePathSpringJUnit4ClassRunnerAppCtxTests
|
||||||
*/
|
*/
|
||||||
@RunWith(SpringJUnit4ClassRunner.class)
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||||||
@ContextConfiguration(locations = { SpringJUnit4ClassRunnerAppCtxTests.DEFAULT_CONTEXT_RESOURCE_PATH })
|
@ContextConfiguration(locations = { SpringJUnit4ClassRunnerAppCtxTests.DEFAULT_CONTEXT_RESOURCE_PATH }, inheritLocations = false)
|
||||||
public class AbsolutePathSpringJUnit4ClassRunnerAppCtxTests extends SpringJUnit4ClassRunnerAppCtxTests {
|
public class AbsolutePathSpringJUnit4ClassRunnerAppCtxTests extends SpringJUnit4ClassRunnerAppCtxTests {
|
||||||
/* all tests are in the parent class. */
|
/* all tests are in the parent class. */
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue