All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.junit.fedora.server.journal.readerwriter.AllIntegrationTests Maven / Gradle / Ivy

Go to download

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.journal.readerwriter;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses( {fedora.server.journal.readerwriter.multicast.AllIntegrationTests.class})
public class AllIntegrationTests {

    // Supports legacy tests runners
    public static junit.framework.Test suite() throws Exception {

        junit.framework.TestSuite suite =
                new junit.framework.TestSuite(AllIntegrationTests.class
                        .getName());

        suite
                .addTest(fedora.server.journal.readerwriter.multicast.AllIntegrationTests
                        .suite());

        return suite;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy