All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmockring.spi.PostShutdownHook Maven / Gradle / Ivy

Go to download

jmockring - Java test MOCKing tool for spRING. A test harness tool for projects using the following technology stack: - Java 6+ - Spring 3.1 or greater as a DI/Deployment container - JUnit 4 and Mockito for testing - Jetty/Servlet API 3.0 for web app (war) deployment - for testing only Main features: 1) Partial Spring context deployment with automatic bean mocking for unavailable beans 2) Bootstrapping embedded Jetty server via JUnit runners 3) Configurable web application contexts 4) Automatic injection of Spring beans and mocks in JUnit tests via Java5 annotations

The newest version!
package org.jmockring.spi;

/**
 * Callback interface to cleanup after all tests in the suite have completed.
 * 

* This is invoked after the server is shut down. *

* Implementations must provide no-arg constructor. * * @author Pavel Lechev * @since 08/11/13 */ public interface PostShutdownHook { void onTestsComplete(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy