*/
private boolean commonToBothInterfaces(String home,String remote,EjbDescriptor descriptor, Result result, Method m) {
try {
// we must not find this method exposed in the home or remote interface
VerifierTestContext context = getVerifierContext();
ClassLoader jcl = context.getClassLoader();
Method m1 = getMethod(Class.forName(home, false,
getVerifierContext().getClassLoader()),m.getName(), m.getParameterTypes());
Method m2 = getMethod(Class.forName(remote, false,
getVerifierContext().getClassLoader()), m.getName(), m.getParameterTypes());
if (m1 == null && m2 == null) {