WG: best way to set up tests with WicketTester Spring and Hibernate

2016-05-15 Thread hansheinrichbraun
GMT+01:00) An: users@wicket.apache.org Betreff: best way to set up tests with WicketTester Spring and Hibernate i try to build my tests for my wicket applications with wicket 6.19.0 spring 3.2.2.RELEASE and hibernate 4.1.8.Final the tests run fine only when OpenSessionInViewFilter is used

best way to set up tests with WicketTester Spring and Hibernate

2016-05-13 Thread hansheinrichbraun
i try to build my tests for my wicket applications with wicket 6.19.0 spring 3.2.2.RELEASE and hibernate 4.1.8.Final the tests run fine only when OpenSessionInViewFilter is used I get the Error could not initialize proxy - no sessionwhat is the best way to deal with problem. I read a remark

Re: WicketTester Spring

2012-03-04 Thread Douglas Ferguson
What does this mean? you have to set the app to wicket tester instance. Douglas On Mar 4, 2012, at 1:32 AM, Per Newgro wrote: And the app should know the context in which way? No no you have to set the app to wicket tester instance. code tester = new WicketTester(new MyApp()); /code

Re: WicketTester Spring

2012-03-04 Thread Per Newgro
Assign the app to the wicket tester instance you use. See code section below. Per Am 04.03.2012 10:11, schrieb Douglas Ferguson: What does this mean? you have to set the app to wicket tester instance. Douglas On Mar 4, 2012, at 1:32 AM, Per Newgro wrote: And the app should know the context

Re: WicketTester Spring

2012-03-04 Thread Douglas Ferguson
I'm doing that. The fix involved moving the injector initialization to a template method so I could override. tester = new WicketTester(new MyApp(){ @Override public SpringComponentInjector setupInjector() {

Re: WicketTester Spring

2012-03-04 Thread Per Newgro
So problem is solved? Per Am 04.03.2012 11:22, schrieb Douglas Ferguson: I'm doing that. The fix involved moving the injector initialization to a template method so I could override. tester = new WicketTester(new MyApp(){ @Override

Re: WicketTester Spring

2012-03-04 Thread Douglas Ferguson
Yes. Now on to others. :( On Mar 4, 2012, at 4:27 AM, Per Newgro wrote: So problem is solved? Per Am 04.03.2012 11:22, schrieb Douglas Ferguson: I'm doing that. The fix involved moving the injector initialization to a template method so I could override. tester = new

WicketTester Spring

2012-03-03 Thread Douglas Ferguson
I'm trying to use wicket tester to test an app that is running with spring. I'm getting this error: java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? I thought perhaps I would be able to use SpringJunit4ClassRunning, but that didn't

Re: WicketTester Spring

2012-03-03 Thread Per Newgro
And the app should know the context in which way? No no you have to set the app to wicket tester instance. code tester = new WicketTester(new MyApp()); /code Cheers Per Am 04.03.2012 06:17, schrieb Douglas Ferguson: I'm trying to use wicket tester to test an app that is running with