/* * Copyright (c) 2001 - 2008 TOPP - www.openplans.org. All rights reserved. * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.test; import org.geoserver.data.test.TestData; import org.geotools.data.SampleDataAccess; /** * Abstract base class for test cases that test integration of {@link SampleDataAccess} with * GeoServer. * * @author Ben Caradoc-Davies, CSIRO Exploration and Mining */ public abstract class SampleDataAccessTestSupport extends GeoServerAbstractTestSupport { @Override protected TestData buildTestData() throws Exception { return new SampleDataAccessMockData(); } }