command.initialize(container);
}
public void testPerform()
{
InvocationContext ctx = new MVCCInvocationContext();
ctx.putLookedUpNode(testFqn, null);
assert !((Boolean) command.perform(ctx));
ctx.putLookedUpNode(testFqn, new NodeSpiMock(testFqn));
assert Boolean.TRUE == command.perform(ctx);
}