}
}
public void test16MultipleValues() throws MapperException {
/* populate input */
Personne input = new Personne();
input.setName("*");
input.setSurname("thiery");
NamingEnumeration enu = _answer16();
ctxmock.expects(once()).method("search").with(eq(cn),
eq("fullName=* thiery"), ANYTHING).will(returnValue(enu));
List ret = sm.search(input, null);
assertEquals("Return list should contain two elements", 2, ret.size());