/* The contents of this file are subject to the license and copyright terms * detailed in the license directory at the root of the source tree (also * available online at http://fedora-commons.org/license/). */ package org.fcrepo.client.utility.ingest; import org.fcrepo.test.FedoraTestCase; import org.junit.After; import org.junit.Before; import org.junit.Test; public class TestIngest extends FedoraTestCase { @Before public void setUp() throws Exception { } @After public void tearDown() throws Exception { } @Test public void testMultiFromDirectory() throws Exception { } // Supports legacy test runners public static junit.framework.Test suite() { return new junit.framework.JUnit4TestAdapter(TestIngest.class); } }