1 6 7 package com.hp.hpl.jena.graph.test; 8 9 import com.hp.hpl.jena.graph.*; 10 import com.hp.hpl.jena.graph.impl.*; 11 import junit.framework.*; 12 13 19 public class TestSimpleGraphMaker extends AbstractTestGraphMaker 20 { 21 public TestSimpleGraphMaker( String name ) 22 { super( name ); } 23 24 public static TestSuite suite() 25 { return new TestSuite( TestSimpleGraphMaker.class ); } 26 27 public GraphMaker getGraphMaker() 28 { return new SimpleGraphMaker(); } 29 } 30 31 32 | Popular Tags |