@Test
public void oneVUnsatisfiableEnumerations() throws InvalidConstrainingFacetException, InvalidLiteralException,
UnrecognizedDatatypeException {
final Literal x = new Literal(term("x"), null, abox, DependencySet.INDEPENDENT);
for (ATermAppl a : getUnsatisfiableDecimalEnumerations()) {
x.addType(a, DependencySet.INDEPENDENT);
}
assertFalse(reasoner.isSatisfiable(singleton(x), Collections.<Literal, Set<Literal>> emptyMap()));
}