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

test.junit.fedora.server.validation.AllUnitTests Maven / Gradle / Ivy


package fedora.server.validation;

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

@RunWith(Suite.class)
@Suite.SuiteClasses( {RelsExtValidatorTest.class, 
                      ValidationUtilityTest.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.addTestSuite(RelsExtValidatorTest.class);
        suite.addTest(ValidationUtilityTest.suite());

        return suite;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy