Package com.google.refine.rdf.vocab

Examples of com.google.refine.rdf.vocab.VocabularyImporter


public class ImportPrefixTest {

  @Test
  public void testImportAndSeach()throws Exception{
    VocabularyImporter fakeImporter = new FakeImporter();
    VocabularySearcher searcher = new VocabularySearcher(new File("tmp"));
    searcher.importAndIndexVocabulary("foaf", "http://xmlns.com/foaf/0.1/", "http://xmlns.com/foaf/0.1/","1", fakeImporter);
   
    assertFalse(searcher.searchClasses("foaf:P", "1").isEmpty());
  }
View Full Code Here

TOP

Related Classes of com.google.refine.rdf.vocab.VocabularyImporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.