@Test
public void testJustOne() throws IOException {
ExactComparator comp = new ExactComparator();
List<Property> props = new ArrayList();
props.add(new PropertyImpl("ID"));
Property name = new PropertyImpl("NAME", comp, 0.0, 1.0);
props.add(name);
props.add(new PropertyImpl("EMAIL", comp, 0.0, 0.0));
props.add(new PropertyImpl("IGNORE", comp, 0.0, 0.0));
props.add(new PropertyImpl("IGNORE2", comp, 0.0, 0.0));
ConfigurationImpl config = new ConfigurationImpl();
config.setThreshold(0.85);
config.setProperties(props);