test.junit.fedora.server.resourceIndex.AllIntegrationTests 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.server.resourceIndex;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
ResourceIndexDatePrecisionIntegrationTest.class,
ResourceIndexAddDelDissIntegrationTest.class,
ResourceIndexAddDelDSIntegrationTest.class,
ResourceIndexAddDelMiscIntegrationTest.class,
ResourceIndexModDissIntegrationTest.class,
ResourceIndexModDSIntegrationTest.class,
ResourceIndexModMiscIntegrationTest.class
})
public class AllIntegrationTests {
// Supports legacy test runners
public static junit.framework.Test suite() throws Exception {
junit.framework.TestSuite suite =
new junit.framework.TestSuite(AllIntegrationTests.class.getName());
suite.addTest(ResourceIndexDatePrecisionIntegrationTest.suite());
suite.addTest(ResourceIndexAddDelDissIntegrationTest.suite());
suite.addTest(ResourceIndexAddDelDSIntegrationTest.suite());
suite.addTest(ResourceIndexAddDelMiscIntegrationTest.suite());
suite.addTest(ResourceIndexModDissIntegrationTest.suite());
suite.addTest(ResourceIndexModDSIntegrationTest.suite());
suite.addTest(ResourceIndexModMiscIntegrationTest.suite());
return suite;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy