actionsManager.register(FooAction.class, "one", new ActionDef("/${one}"));
actionsManager.register(FooAction.class, "one", new ActionDef("/dummy")); // no macro
actionsManager.register(FooAction.class, "two", new ActionDef("/${two}/${three}"));
actionsManager.register(FooAction.class, "three", new ActionDef("/life/${three}"));
ActionConfig actionConfig = actionsManager.lookup("/foo", null);
assertEquals("one", actionConfig.actionClassMethod.getName());
actionConfig = actionsManager.lookup("/scott/ramonna", null);
assertEquals("two", actionConfig.actionClassMethod.getName());