@Test
public void testAddThisSimpleNumericIsNotInTheDomain()
throws BuilderException, UnsupportedOperationException,
NotInTheDomainException {
Value value = new SimpleNumeric();
Type type = createTypeWithDomain(Arrays.<Value> asList(value));
exception.expect(NotInTheDomainException.class);
exception.expectMessage(getNotInTheDomainMessage(simpleNumeric));
simpleNumeric.add(value, type);
}