Rename WebTEL to ServletTEL

Renamed WebTestExecutionListener to ServletTestExecutionListener.
This commit is contained in:
Sam Brannen
2012-10-19 20:29:20 -04:00
parent ff8a6e8fdb
commit 7c538bd588
2 changed files with 4 additions and 4 deletions

View File

@@ -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" };

View File

@@ -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);
/**