org.ontoware.rdf2go.model.ModelSetTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf2go.impl.test Show documentation
Show all versions of rdf2go.impl.test Show documentation
This project contains base classes for implementing tests.
The newest version!
package org.ontoware.rdf2go.model;
import org.ontoware.rdf2go.ModelFactory;
import org.ontoware.rdf2go.RDF2Go;
/**
* Tests the implementation found on the classpath
* @author voelkel
*
*/
public class ModelSetTest extends AbstractModelSetTest {
@Override
public ModelFactory getModelFactory() {
return RDF2Go.getModelFactory();
}
}