Package liquibase.integration.ant

Source Code of liquibase.integration.ant.DropAllTaskTest

package liquibase.integration.ant;

import junit.framework.TestSuite;
import org.apache.ant.antunit.junit3.AntUnitSuite;
import org.apache.ant.antunit.junit4.AntUnitSuiteRunner;
import org.junit.runner.RunWith;

import java.io.File;
import java.net.URISyntaxException;
import java.net.URL;

@RunWith(AntUnitSuiteRunner.class)
public class DropAllTaskTest extends AbstractAntTaskTest {
    public static TestSuite suite() throws URISyntaxException {
        setProperties();
        URL resource = DropAllTaskTest.class.getResource("/liquibase/integration/ant/DropAllTaskTest.xml");
        File file = new File(resource.toURI());
        return new AntUnitSuite(file, DropAllTaskTest.class);
    }
}
TOP

Related Classes of liquibase.integration.ant.DropAllTaskTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.