
org.jnario.junit3.JnarioTestSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
package org.jnario.junit3;
import junit.framework.TestSuite;
public class JnarioTestSuite extends TestSuite{
@SuppressWarnings("rawtypes")
public JnarioTestSuite(String name, Class... testClasses) {
super(name);
for (Class testClass : testClasses) {
addTestSuite(testClass);
}
}
@Override
@SuppressWarnings("rawtypes")
public void addTestSuite(Class testClass) {
addTest(new NamedJnarioTestSuite(testClass));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy