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