Polishing: suppressing warnings.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1470 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Sam Brannen 2009-07-05 21:29:28 +00:00
parent efa98d3ff4
commit 4ec91c47c3
1 changed files with 16 additions and 16 deletions

View File

@ -31,14 +31,13 @@ import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.test.context.support.AbstractTestExecutionListener;
import org.springframework.core.style.ToStringCreator;
import org.springframework.test.context.support.AbstractTestExecutionListener;
/**
* JUnit 4 based unit test for {@link TestContextManager}, which verifies
* proper <em>execution order</em> of registered
* {@link TestExecutionListener TestExecutionListeners}.
* JUnit 4 based unit test for {@link TestContextManager}, which verifies proper
* <em>execution order</em> of registered {@link TestExecutionListener
* TestExecutionListeners}.
*
* @author Sam Brannen
* @since 2.5
@ -58,9 +57,9 @@ public class TestContextManagerTests {
/**
* Asserts the <em>execution order</em> of 'before' and 'after' test
* method calls on {@link TestExecutionListener listeners} registered for
* the configured {@link TestContextManager}.
* Asserts the <em>execution order</em> of 'before' and 'after' test method
* calls on {@link TestExecutionListener listeners} registered for the
* configured {@link TestContextManager}.
*
* @see #beforeTestMethodCalls
* @see #afterTestMethodCalls
@ -143,6 +142,7 @@ public class TestContextManagerTests {
@ContextConfiguration
private static class ExampleTestCase {
@SuppressWarnings("unused")
public void exampleTestMethod() {
assertTrue(true);
}