test.junit.fedora.server.AllUnitTests 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;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses( {fedora.server.journal.AllUnitTests.class,
fedora.server.search.AllUnitTests.class,
fedora.server.validation.AllUnitTests.class})
public class AllUnitTests {
// Supports legacy tests runners
public static junit.framework.Test suite() throws Exception {
junit.framework.TestSuite suite =
new junit.framework.TestSuite(AllUnitTests.class.getName());
suite.addTest(fedora.server.journal.AllUnitTests.suite());
suite.addTest(fedora.server.search.AllUnitTests.suite());
suite.addTest(fedora.server.validation.AllUnitTests.suite());
return suite;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy