1 6 7 package com.hp.hpl.jena.vocabulary.test; 8 9 import com.hp.hpl.jena.vocabulary.*; 10 import junit.framework.*; 11 12 15 public class TestVocabDB extends VocabTestBase 16 { 17 public TestVocabDB(String name) 18 { super(name); } 19 20 public static TestSuite suite() 21 { return new TestSuite( TestVocabDB.class ); } 22 23 public void testXX() 24 { 25 String ns = "http://jena.hpl.hp.com/2003/04/DB#"; 26 27 assertResource( ns + "SystemGraph", DB.systemGraphName ); 28 assertProperty( ns + "EngineType", DB.engineType ); 29 assertProperty( ns + "DriverVersion", DB.driverVersion ); 30 assertProperty( ns + "FormatDate", DB.formatDate ); 31 assertProperty( ns + "Graph", DB.graph ); 32 34 assertProperty( ns + "GraphName", DB.graphName ); 35 assertProperty( ns + "GraphType", DB.graphType ); 36 assertProperty( ns + "GraphLSet", DB.graphLSet ); 37 assertProperty( ns + "GraphPrefix", DB.graphPrefix ); 38 assertProperty( ns + "GraphId", DB.graphId ); 39 assertProperty( ns + "GraphDBSchema", DB.graphDBSchema ); 40 assertProperty( ns + "StmtTable", DB.stmtTable ); 41 assertProperty( ns + "ReifTable", DB.reifTable ); 42 43 assertProperty( ns + "PrefixValue", DB.prefixValue ); 44 assertProperty( ns + "PrefixURI", DB.prefixURI ); 45 46 assertProperty( ns + "LSetName", DB.lSetName ); 47 assertProperty( ns + "LSetType", DB.lSetType ); 48 assertProperty( ns + "LSetPSet", DB.lSetPSet ); 49 50 assertProperty( ns + "PSetName", DB.pSetName ); 51 assertProperty( ns + "PSetType", DB.pSetType ); 52 assertProperty( ns + "PSetTable", DB.pSetTable ); 53 54 assertResource( ns + "undefined", DB.undefined ); 55 } 56 } 57 58 59 88 | Popular Tags |