1 6 7 package com.hp.hpl.jena.graph.test; 8 9 12 13 import com.hp.hpl.jena.graph.*; 14 15 import junit.framework.*; 16 17 public class TestFactory extends GraphTestBase 18 { 19 public TestFactory( String name ) 20 { super( name ); } 21 22 public static TestSuite suite() 23 { return new TestSuite( TestFactory.class ); } 24 25 public void testFactory() 26 { 27 Factory.createDefaultGraph(); 28 } 29 } 30 31 | Popular Tags |