net.anotheria.asg.service.IFixtureService Maven / Gradle / Ivy
package net.anotheria.asg.service;
/**
* IFixtureService interface.
*
* @author another
* @version $Id: $Id
*/
public interface IFixtureService {
/**
* setUp.
*/
void setUp();
/**
* tearDown.
*/
void tearDown();
/**
* reset.
*/
void reset();
}