java - Where can I find JSFUnit real-life example? -
I am trying to use JSFUnit framework, but do not understand how to assign projects / files . How many projects / sub-projects should I have, and whether it is only one project, as it usually happens with the genutite and similar frameworks would be nice to see some examples.
I still can not understand that I need to create a separate Maven project for test purposes (as I say) or I can work in my main project ...
. How many projects / sub-projects should I have, and whether it is only one project, as it usually happens with the genutite and similar frameworks would be nice to see some examples.
There are several examples in the JSFUnit project (as we can see) and I suggest getting them (checkout complete).
I still can not understand that I need to create a separate Maven project for testing purposes (as this page indicates) or I can work in my main project ...
JSFUnit tests are container tests and need to be packaged and deployed as a war. But you do not want to explicitly end them in the "production" war and put them in a separate project, there is a clear way of different things (then they merge with ). Then, yes, create a separate project
See also
- (JSFUnit blog)
- [PDF]
- [ PDF]
Comments
Post a Comment