}
@Test
public void testGetRecognizedFaces() throws Exception
{
Face expResult = new Face(142, 120, 76, 76, "NIELS", new Age(31, 7, 15, 0, 0, 0));
Face[] result = _panasonicDirectory.getRecognizedFaces();
Assert.assertNotNull(result);
Assert.assertEquals(expResult, result[0]);
}