* Test implementation class with a mapping that is not valid (an interface that is not implemented).
*/
@Test
public void testInvalidImplementsInterfaceModel() {
Resource res = getMockResourceWithProps();
InvalidSampleServiceInterface model = factory.getAdapter(res, InvalidSampleServiceInterface.class);
assertNull(model);
assertFalse(factory.isModelClass(res, InvalidSampleServiceInterface.class));
}