org.tatools.sunshine.testng.TestNGSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunshine-testng Show documentation
Show all versions of sunshine-testng Show documentation
"The package is Sunshine's adapter for TestNG tests runner."
package org.tatools.sunshine.testng;
import org.tatools.sunshine.core.FileSystemPath;
import org.tatools.sunshine.core.Suite;
import org.tatools.sunshine.core.SuiteException;
/**
* @author Dmytro Serdiuk ([email protected])
* @version $Id: 1f11bb02c20eeab0655fa86a5caa2e4f743d1b7c $
* @since 0.1
*/
public interface TestNGSuite extends Suite {
/**
* Return a TestNG tests file.
*
* @return an instance of {@link FileSystemPath}.
* @throws SuiteException if some error occurs
*/
@Override
FileSystemPath tests() throws SuiteException;
}