/* * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.test.context; /** * {@code TestExecutionListener} defines a listener API for reacting to * test execution events published by the {@link TestContextManager} with which * the listener is registered. *

Concrete implementations must provide a {@code public} no-args constructor, * so that listeners can be instantiated transparently by tools and configuration * mechanisms. *

Implementations may optionally declare the position in which they should * be ordered among the chain of default listeners via the * {@link org.springframework.core.Ordered Order} interface or * {@link org.springframework.core.annotation.Order @Order} annotation. See * {@link TestContextBootstrapper#getTestExecutionListeners()} for details. *

Spring provides the following out-of-the-box implementations (all of * which are annotated with {@code @Order}): *

* * @author Sam Brannen * @author Juergen Hoeller * @since 2.5 */ public interface TestExecutionListener { /** * Pre-processes a test class before execution of all tests within * the class. *

This method should be called immediately before framework-specific * before class lifecycle callbacks. *

If a given testing framework does not support before class * lifecycle callbacks, this method will not be called for that framework. * * @param testContext the test context for the test; never {@code null} * @throws Exception allows any exception to propagate */ void beforeTestClass(TestContext testContext) throws Exception; /** * Prepares the {@link Object test instance} of the supplied * {@link TestContext test context}, for example by injecting dependencies. *

This method should be called immediately after instantiation of the test * instance but prior to any framework-specific lifecycle callbacks. * * @param testContext the test context for the test; never {@code null} * @throws Exception allows any exception to propagate */ void prepareTestInstance(TestContext testContext) throws Exception; /** * Pre-processes a test before execution of the * {@link java.lang.reflect.Method test method} in the supplied * {@link TestContext test context}, for example by setting up test * fixtures. *

This method should be called immediately prior to framework-specific * before lifecycle callbacks. * * @param testContext the test context in which the test method will be * executed; never {@code null} * @throws Exception allows any exception to propagate */ void beforeTestMethod(TestContext testContext) throws Exception; /** * Post-processes a test after execution of the * {@link java.lang.reflect.Method test method} in the supplied * {@link TestContext test context}, for example by tearing down test * fixtures. *

This method should be called immediately after framework-specific * after lifecycle callbacks. * * @param testContext the test context in which the test method was * executed; never {@code null} * @throws Exception allows any exception to propagate */ void afterTestMethod(TestContext testContext) throws Exception; /** * Post-processes a test class after execution of all tests within * the class. *

This method should be called immediately after framework-specific * after class lifecycle callbacks. *

If a given testing framework does not support after class * lifecycle callbacks, this method will not be called for that framework. * * @param testContext the test context for the test; never {@code null} * @throws Exception allows any exception to propagate */ void afterTestClass(TestContext testContext) throws Exception; }