
org.ehoffman.module.ModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DynamicModuleAPI Show documentation
Show all versions of DynamicModuleAPI Show documentation
Some simple extensions to testng for use with maven.
The newest version!
package org.ehoffman.module;
/**
*
* This is simply a marking interface.
*
* The annotation @Fixture takes a list of classes that all must implement this interface. Any implementor of this interface is expected to inherit it from
* {@link Module} or {@link ModuleGroup} which it would implement.
*
* @author rexhoffman
*
* @param
*/
public interface ModuleProvider {
/**
* This is a key that is used to determine which modules are interchangeable in testing, A module provider can exist
* @return
*/
public String getModuleType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy