// Test ability to lookup and execute a chain using the context
public void testExecuteMethodLookup_2b() {
ChainBase chain = new ChainBase();
chain.addCommand(new DelegatingCommand("2b1"));
chain.addCommand(new DelegatingCommand("2b2"));
chain.addCommand(new NonDelegatingCommand("2b3"));
// use default catalog
catalog.addCommand("foo", chain);
command.setNameKey("nameKey");