if (isMethod(method, "methodMissing", String.class, Object.class)) {
throw new MissingMethodException((String) normalizedArgs[0],
mockConfiguration.getType(), new Object[] {normalizedArgs[1]}, false);
}
if (isMethod(method, "propertyMissing", String.class)) {
throw new MissingPropertyException((String) normalizedArgs[0], mockConfiguration.getType());
}
IMockMethod mockMethod = new StaticMockMethod(method, mockConfiguration.getExactType());
IMockInvocation invocation = new MockInvocation(mockObject, mockMethod, Arrays.asList(normalizedArgs), realMethodInvoker);
IMockController controller = specification.getSpecificationContext().getMockController();