Package com.google.refine.test.rdf.vocab

Source Code of com.google.refine.test.rdf.vocab.AddPrefixTest

package com.google.refine.test.rdf.vocab;

import org.testng.annotations.Test;

import com.google.refine.rdf.RdfSchema;

import static org.testng.Assert.*;

public class AddPrefixTest {

  @Test
  public void testAddNewPrefix() throws Exception{
    RdfSchema schema = new RdfSchema();
    assertFalse(schema.getPrefixesMap().containsKey("foaf"));
    schema.addPrefix("foaf", "http://xmlns.com/foaf/0.1/");
   
    assertTrue(schema.getPrefixesMap().containsKey("foaf"));
  }
 
}
TOP

Related Classes of com.google.refine.test.rdf.vocab.AddPrefixTest

TOP
Copyright © 2018 www.massapi.com. 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.