1 6 7 package com.hp.hpl.jena.vocabulary.test; 8 9 import com.hp.hpl.jena.vocabulary.*; 10 11 import junit.framework.*; 12 16 public class TestVocabTestQuery extends VocabTestBase 17 { 18 public TestVocabTestQuery(String name) 19 { super(name);} 20 21 public static TestSuite suite() 22 { return new TestSuite( TestVocabTestQuery.class ); } 23 24 public void testTestQuery() 25 { 26 String ns = "http://jena.hpl.hp.com/2003/03/test-query#"; 27 assertResource( ns + "QueryTest", TestQuery.QueryTest ); 28 assertProperty( ns + "query", TestQuery.query ); 29 assertProperty( ns + "data", TestQuery.data ); 30 } 31 } 32 33 34 | Popular Tags |