Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
WicketTester (http://woogle.billen.dk/search/q/wickettester) is good for functional tests. FrankOn 8/2/06, Ittay Dror [EMAIL PROTECTED] wrote: Hi,What frameworks are suitable for automatic testing of wicket applications? I'm interested in functional, regression and performance tests.Is it tricky

Re: [Wicket-user] automatic testing

2006-08-02 Thread Juergen Donnerstag
and we are using jWebUnit in wicket-examples for in-container tests. Though the tests are quite simple. Wicket-Bench (eclipse IDE) support Selenium (http://www.openqa.org/selenium/) Performance tests: we deliver a servlet filter (either in the core or extension project) which provides response

Re: [Wicket-user] automatic testing

2006-08-02 Thread Ittay Dror
thanx, reply inline Juergen Donnerstag wrote: and we are using jWebUnit in wicket-examples for in-container tests. Though the tests are quite simple. Wicket-Bench (eclipse IDE) support Selenium (http://www.openqa.org/selenium/) Performance tests: we deliver a servlet filter (either in the

Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
On 8/2/06, Ittay Dror [EMAIL PROTECTED] wrote: in performance tests, i meant running test scenarios simultaneously. this is also for discovering threading issues.Well JMeter has proven quite useful when we (@work) tested AJAX functionality in Wicket. Frank

Re: [Wicket-user] automatic testing

2006-08-02 Thread Martijn Dashorst
jmeter, microsoft ACT (studio 2003). Google for 'an overview of load test tools'. Martijn On 8/2/06, Frank Bille [EMAIL PROTECTED] wrote: On 8/2/06, Ittay Dror [EMAIL PROTECTED] wrote: in performance tests, i meant running test scenarios simultaneously. this is also for discovering

Re: [Wicket-user] automatic testing

2006-08-02 Thread Joni Freeman
On Wed, 2006-08-02 at 10:30 +0300, Ittay Dror wrote: Hi, What frameworks are suitable for automatic testing of wicket applications? I'm interested in functional, regression and performance tests. We use wickettester (or something similar) for unit testing the models and listener methods.

Re: [Wicket-user] automatic testing

2006-08-02 Thread Martijn Dashorst
I tried grinder, but found that jmeter recording was more to my liking as it enables you to see the responses generated by Wicket. Martijn On 8/2/06, Joni Freeman [EMAIL PROTECTED] wrote: On Wed, 2006-08-02 at 10:30 +0300, Ittay Dror wrote: Hi, What frameworks are suitable for automatic

Re: [Wicket-user] automatic testing

2006-08-02 Thread Eelco Hillenius
Second that. I had the best experiences with JMeter. It can be a bit weird when you start out, but if you follow this tutorial: http://www.javaworld.com/javaworld/jw-07-2005/jw-0711-jmeter-p2.html you'll be up and running in no time. Eelco On 8/2/06, Martijn Dashorst [EMAIL PROTECTED] wrote: I

Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
And remember to use the latest version. We had problems with jmeter slaves crashing too soon (couldn't even get them to overload the server ;))On 8/2/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Second that. I had the best experiences with JMeter. It can be a bitweird when you start out, but if