Thanks for the reply!
I came up with a similar solution:
I pass SecurityModel class from tapestry-spring-security to instance of
PageTester:
tester = new PageTester(appPackage, appName,
"src/main/webapp",SecurityModule.class);
and then I just create SecurityConte
We also use spring-security and ran into some issues as well. What we
ended up doing was adding something like this to the JUnit #setUp
method
/* (non-Javadoc)
* @see junit.framework.TestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
_tes
Hi,
This seems to be related to this thread:
http://www.nabble.com/PageLinkTarget%2C-where-did-it-go--to21022001.html#a21022001
/Serge
Michał Jedynak wrote:
>
> Hi there,
>
> I've integrated spring security to my sample tapestry5 application
> (I'm using version 5.0.18) based on tapestry-spr