Removed unnecessary declaration of @TestExecutionListeners.

This commit is contained in:
Sam Brannen
2011-04-03 17:20:02 +00:00
parent 5373b43a53
commit 70f883303f

View File

@@ -21,13 +21,10 @@ import static org.junit.Assert.assertNotNull;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.Employee;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.support.DependencyInjectionTestExecutionListener;
/**
* <p>
@@ -43,7 +40,6 @@ import org.springframework.test.context.support.DependencyInjectionTestExecution
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@TestExecutionListeners( { DependencyInjectionTestExecutionListener.class })
public class DefaultLocationsBaseTests {
@Autowired