
test.junit.fedora.test.AllSystemTestsConfigA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcrepo-client Show documentation
Show all versions of fcrepo-client Show documentation
The Fedora Client is a Java Library that allows API access to a Fedora Repository. The client is typically one part of a full Fedora installation.
The newest version!
package fedora.test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
fedora.test.AllCommonSystemTests.class,
fedora.test.api.TestAPIAConfigA.class,
fedora.test.api.TestAPIALiteConfigA.class,
fedora.test.api.TestHTTPStatusCodesConfigA.class,
fedora.test.api.TestManyDisseminations.class
})
public class AllSystemTestsConfigA {
// Supports legacy tests runners
public static junit.framework.Test suite() throws Exception {
junit.framework.TestSuite suite =
new junit.framework.TestSuite(AllSystemTestsConfigA.class.getName());
suite.addTest(fedora.test.AllCommonSystemTests.suite());
suite.addTest(fedora.test.api.TestAPIAConfigA.suite());
suite.addTest(fedora.test.api.TestAPIALiteConfigA.suite());
suite.addTest(fedora.test.api.TestHTTPStatusCodesConfigA.suite());
suite.addTest(fedora.test.api.TestManyDisseminations.suite());
return suite;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy