blob: 9cf3e544ab9683ad3cdca38ef0f2b0cd09c6566d [file] [log] [blame]
// LatLongDataProviderTest.java
package org.eclipse.stem.definitions.adapters.spatial.geo;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import junit.framework.TestCase;
/**
* This class is a JUnit test for LatLongDataProvider.
*/
abstract public class LatLongDataProviderTest extends TestCase {
protected LatLongDataProvider fixture;
private final LatLongDataProvider getFixture() {
return fixture;
}
protected final void setFixture(LatLongDataProvider fixture) {
this.fixture = fixture;
} // setFixture
} // LatLongDataProviderTest