* @throws InvocationTargetException
* @throws IllegalAccessException
*/
private void ensureMethodNotFoundMethod( BaseObject obj, String methodName, DSVersion version )
{
ComponentContainer container = newContainer();
SingleComponentManager icm = new SingleComponentManager( container, new ComponentMethods() );
ActivateMethod am = new ActivateMethod( methodName, methodName != null, obj.getClass(), version, false, false );
am.invoke( obj, new ActivatorParameter( m_ctx, -1 ), null, icm );
Method m = am.getMethod();
assertNull( m );