01: package org.ontoware.rdf2go.model;
02:
03: import org.ontoware.rdf2go.ModelFactory;
04: import org.ontoware.rdf2go.RDF2Go;
05:
06: /**
07: * Tests the implementation found on the classpath
08: * @author voelkel
09: *
10: */
11: public class ModelTest extends AbstractModelTest {
12:
13: @Override
14: public ModelFactory getModelFactory() {
15: return RDF2Go.getModelFactory();
16: }
17:
18: }
|