1   package eu.fbk.rdfpro.util;
2   
3   import org.junit.Test;
4   
5   public class NamespacesTest {
6   
7       @Test
8       public void test() {
9           System.out.println(Namespaces.DEFAULT.prefixesFor("http://purl.org/dc/terms/"));
10          System.out.println(Namespaces.DEFAULT.prefixesFor("http://purl.org/dc/dcmitype/"));
11          System.out.println(Namespaces.DEFAULT.prefixFor("http://purl.org/dc/terms/"));
12      }
13  
14  }