Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Choosing a test framework for a JSF based webapp

Tags:

java

testing

jsf

I am confused between the following test framework/tools:

  1. JUnit
  2. Shale
  3. FitNesse

I need a test framework which is lean and generic in a way that the test cases can be re-used later by any other web application.

Any suggestions and other testing tool for the same ?

like image 248
KronnorK Avatar asked Oct 10 '22 03:10

KronnorK


2 Answers

JSF Testing Tools is not the latest article, but giving a nice overview.

like image 197
zellus Avatar answered Oct 18 '22 04:10

zellus


It depends upon what you want to test. If you want functional end to end test then which framework you use to build the webapp doesn't matter much and my preference is Selinium 2/WebDriver. If your intention is to do white-box testing then I suggest JSFUnit or Arquillian.

like image 26
Aravind Yarram Avatar answered Oct 18 '22 04:10

Aravind Yarram