Looking for some guidance on using StrutsTestCase with Tiles.
Within struts-config, I have an action entry like so:
<action path="/servicesAndRates" forward=".servicesAndRates" />
.servicesAndRates refers to a tiles definition within an XML file mapped via its plugin definition to
Struts.
If I bring up my application, the application resolves the tiles definition appropriately. In my StrutsTestCase,though, I've been unable to verify the tiles forward.
What would be the appropriate mechanism to determine that the action appropriately resolves its configuration?
Notes on what I've tried thusfar, and my attempt at explaining why they don't work:
verifyTilesForward: seems to require a forward as a result of an action, rather than directly via the mapping
verifyForwardPath: gives me the base layout from which my main tiles all derive, and thus not a very good
test check
verifyInputTilesForward: since there's no input to return to, this doesn't seem to work.
[ April 05, 2006: Message edited by: Tina Coleman ]