* @return a new method level context
*/
public TestContext newTestContext(final Method method, final String roleName) {
if (method == null) {
if (classTestContext == null) {
classTestContext = new OpenEjbTestContext(testClazz);
}
return classTestContext;
} else {
return new OpenEjbTestContext(method, roleName);
}
}