Reputation: 19893
I would like to test my JSF application using JSFUnit and embedded Jetty. How can i do this? Is there any documentation which demonstrates this?
I started a jetty server programatically using junit4's @BeforeClass but it seems JSFUnit tries to connect to the server before the static method annotated with @BeforeClass can execute!
Upvotes: 0
Views: 291
Reputation: 441
I am using mortbay plugin to start jetty as a part of maven build. Hope this helps.
Upvotes: 0