@Test
public void testSupsetAndSubSet() throws BuilderException, UnsupportedOperationException, NotInTheDomainException, RangeFormatException{
Range value = new Range(new SimpleNumeric(4.0), new SimpleNumeric(2.0));
SetValue value2 = new SetValue(Arrays.<Value> asList(new SimpleNumeric(4.0), new SimpleNumeric(2.0)));
Type type = createTypeWithDomain(Arrays.<Value> asList(
setValue, value, value2, new SimpleNumeric(3.0)));
assertFalse(setValue.supset(value, type));
assertFalse(setValue.subset(value, type));
assertFalse(setValue.supset(value2, type));