conf = new SimpleConstraintConfigurationImpl();
conf.setFactType("Person");
conf.setFieldName("name");
cc.addConstraint(conf);
assertEquals(2, cc.getConstraints("Person").size());
assertEquals(1, cc.getConstraints("Person", "age").size());
assertSame(conf, cc.getConstraints("Person", "name").get(0));
assertEquals(0, cc.getConstraints("Person", "toothCount").size());