Package org.geoserver.test.onlineTest

Source Code of org.geoserver.test.onlineTest.WfsOnlinePostgisTest

/* (c) 2014 Open Source Geospatial Foundation - all rights reserved
* (c) 2001 - 2013 OpenPlans
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.test.onlineTest;

import org.geoserver.test.onlineTest.setup.WfsOnlineTestMockData;
import org.geoserver.test.onlineTest.setup.WfsOnlineTestPostgisSetup;
import org.geoserver.test.onlineTest.support.AbstractReferenceDataSetup;
/**
*
* @author Victor Tey(CSIRO Earth Science and Resource Engineering)
*
*/
public class WfsOnlinePostgisTest extends WfsOnlineTest {

    public WfsOnlinePostgisTest() throws Exception {
        super();
    }

    @Override
    protected WfsOnlineTestMockData createTestData() {
        return new WfsOnlineTestMockData();

    }

    @Override
    public AbstractReferenceDataSetup getReferenceDataSetup() throws Exception {
        return new WfsOnlineTestPostgisSetup();
    }
}
TOP

Related Classes of org.geoserver.test.onlineTest.WfsOnlinePostgisTest

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.