Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
2k views

JSF unit testing

I'm trying to find a practical unit testing framework for JSF. I know about JSFUnit, but this is very impractical to me. I need to include about 10 JARs to my project, and jump through many other ...
5
votes
3answers
424 views

JSF/Java Beans/Richfaces testing solution (JSFUnit, JUnit, etc)

I'm currently looking into approaches for creating automated unit tests for any new code created in our web based application. We are running JSF 2.0, Richfaces 3.3 and using JRE1.6. I'd be ...
3
votes
1answer
335 views

Where can I find JSFUnit real-life example?

I'm trying to use JSFUnit framework, but can't understand how to allocate projects/files. How many projects/sub-projects should I have and whether it is possible to have just ONE project, as it ...
2
votes
1answer
608 views

How to inject managed bean into FacesContext?

How can I replace an @ApplicationScoped managed bean with my own copy of it in FacesContext? All I have is an instance of FacesContext (I'm inside JSFUnit).
1
vote
1answer
280 views

Error while using JSFUnit/HtmlUnit/CSSParser

We've just recently converted our project to using Maven for builds and dependency management, and after the conversion I'm getting the following exception while trying to run any JSFUnit tests in my ...
0
votes
0answers
89 views

JSFUnit with Jboss7 error “Could not inject method parameters”

I have attemped to run the JSFUnit 2.0.0.Beta2, using the basic example JSFUnit 2.0.0.Beta2 Getting Started Example with Jboss AS 7.1.0.Beta1, and I keep getting the following errors. 1:02:42,774 ...
0
votes
1answer
42 views

JSFUnit without Maven and JBoss AS

I would like to use JSFUnit for testing our web app. But we are using weblogic server and build process doesn't use maven. All of the examples use maven to run the tests. Is there other way to run ...
0
votes
0answers
126 views

Trouble with running JSFUnit 2.0Beta1 & Jetty

Hi all i trying to integrate JSFUnit 2.0.0 "Getting Started" Example on Jetty in maven environment. soucre available in Below URL: http://community.jboss.org/wiki/JSFUnit200GettingStartedExample i ...
0
votes
0answers
22 views

Is it possible to use JSFUnit with the JSF implementation provided by Websphere?

In the JSF implementation from Websphere are special JSF Elements like commandExButton or ScriptCollector. Does JSFUnit work with this elements?
0
votes
1answer
125 views

(JSFUnit) visit many url's in same session

I am beginner in JSFUnit and related technologies. I was wondering: is it possible to change the url without creating a new JSFSession object? I.e. I would like to simulate the situation where the ...
0
votes
1answer
218 views

JSFUnit issue - EJB not getting injected into servlet being tested

In my application I have an EntryServlet which loads default data and sets up the security based on the logged in user id. This servlet is using EJB's through dependency injection. It works fine when ...
0
votes
1answer
115 views

Can i use WebSphere 6.1 for JSFunit?

I am doing work on jsfunit, and i am using WebSphere6.1 application server so can anyone give me answer that is it compatible for JSFunit or i need to do some changes in my server configuration? if ...
0
votes
1answer
168 views

JSFUnit accessing FacesContext before JSFSession is created

I want to access the JSFUnit FacesContext before I create the JSFSession object. The reason for this is I would like to set a managed bean value before any request/response processing is done. I use ...
0
votes
1answer
157 views

How can i use embedded Jetty with JSFUnit?

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 ...
0
votes
1answer
167 views

How can i select a value in dropdown list per JSFUnit?

I would like to change a value in dropdown list (h:selectOneMenu) with id "items". The following causes error client.setValue("items", "1"); java.lang.IllegalArgumentException: This method can not ...
0
votes
2answers
275 views

jsfunit with junit 4

We would like to test our web application (jsf 1.2, richfaces 3.3.3) with jsfunit. We are using junit 4.8.1 library for our unit tests. But jsfunit (1.2.0.Final) requires non existing class ...