assertTrue( kb.addAnnotation( s, p, o ) );
assertEquals( Collections.singleton( o ), kb.getAnnotations( s, p ) );
assertEquals( Collections.singleton( o ), kb.copy().getAnnotations( s, p ) );
}
public static <T> Set<Set<T>> singletonSets(T... es) {
Set<Set<T>> set = new HashSet<Set<T>>();
for( T e : es ) {