Rename WebTEL to ServletTEL

Renamed WebTestExecutionListener to ServletTestExecutionListener.
master
Sam Brannen 12 years ago
parent ff8a6e8fdb
commit 7c538bd588
  1. 2
      spring-test/src/main/java/org/springframework/test/context/TestContextManager.java
  2. 6
      spring-test/src/main/java/org/springframework/test/context/web/ServletTestExecutionListener.java

@ -76,7 +76,7 @@ import org.springframework.util.ObjectUtils;
public class TestContextManager {
private static final String[] DEFAULT_TEST_EXECUTION_LISTENER_CLASS_NAMES = new String[] {
"org.springframework.test.context.web.WebTestExecutionListener",
"org.springframework.test.context.web.ServletTestExecutionListener",
"org.springframework.test.context.support.DependencyInjectionTestExecutionListener",
"org.springframework.test.context.support.DirtiesContextTestExecutionListener",
"org.springframework.test.context.transaction.TransactionalTestExecutionListener" };

@ -33,14 +33,14 @@ import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletWebRequest;
/**
* TODO [SPR-9864] Document WebTestExecutionListener.
* TODO [SPR-9864] Document ServletTestExecutionListener.
*
* @author Sam Brannen
* @since 3.2
*/
public class WebTestExecutionListener extends AbstractTestExecutionListener {
public class ServletTestExecutionListener extends AbstractTestExecutionListener {
private static final Log logger = LogFactory.getLog(WebTestExecutionListener.class);
private static final Log logger = LogFactory.getLog(ServletTestExecutionListener.class);
/**
Loading…
Cancel
Save