Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
278 views

Doing integration testing on Oracle ADF application

I have an ADF application which running on my server. I was trying to run some integration test cases on it. I used to use apache cactus framework to run testing on normal web applications. My test ...
2
votes
2answers
539 views

Cactus versus mock objects (jMock, Easy mock)

I'm little confused with Cactus and mock objects (jMock, Easy mock). Could anyone please answer the following questions? When to use Cactus for testing? When not to use Cactus for testing? When to ...
1
vote
0answers
34 views

What is best way to test smartServer servlets?

I have the following Servlet method which I want to create test for it using junit or Cactus.I've tried Junit but in testing implementation classes but I'm a newbie in testing WebServices so I will ...
1
vote
0answers
61 views

Create junitTest or cactus test for servlet

I have the following Servlet method which I want to create test for it using junit or Cactus. I'm a newbie so I will really appreciate any tips. public DSResponse executeFetch(DSRequest req) throws ...
1
vote
0answers
28 views

How to Speed up cactifywar ant task

Is there a way to speed-up the cactifywar Ant task? It takes several minutes to run this task.
1
vote
2answers
634 views

Error : “javax.servlet.ServletException: Failed to load test suite [SampleTest], Reason is [Class not found ”SampleTest“] ”

Hi i am new to cactus and when i am using tomcat5.1 and have included all the necessary jars. But when i am trying to execute it, it is showing the error, Error : "javax.servlet.ServletException: ...
0
votes
2answers
116 views

AssertionFailedError

I am facing the following problem while running it using junit: All the methods are working fine except testValidatePanelistIDHwid. This is the new method that i have added in this class all other ...
0
votes
0answers
310 views

cactifywar cause IllegalStateException when used with jdom,jaxen

I am put in a project which uses cactus for testing .Previously they used to make a war of all code,including the test code for testing the web app.later,the test code was stripped of the test code ...
0
votes
0answers
136 views

cactus testing response redirect

I have a servlet for adding books to a booksdb and another for listing books.I am trying to use cactus for testing. In the beginPostMethod(..) of testcase ,I created parameters needed for creating a ...
0
votes
0answers
107 views

Java Server-Side Unit Testing

I am working on unit testing codes for ADF BC projects and I am facing some problem with executing of the test cases. Basically, the ADF BC projects that I am writing unit tests, uses a data source. ...
0
votes
2answers
529 views

Jakarta Cactus alternate?

Greetings, we have a project with loads of beans, JSP and etc. There is a desperate need for performing automated tests in our environment (we use Maven). Now, we can easily write tests for database ...
0
votes
3answers
298 views

Connection Pool “Leak” in development. Could it be due to JUnit test setup?

I am trying to track down a database connection pool "leak" in development and I am wondering if it is resulting from how the unit tests are set up. Something is grabbing database connections from ...
0
votes
1answer
89 views

Cactus still viable for Integration Testing?

I'm working on a project and we want to perform integration testing for our servlets and JSP. I was reading about the Cactus project. I was wondering if Cactus is still a viable solution for ...
0
votes
1answer
215 views

Debugging Cactus Tests in Eclipse

Side note: This is inherited code, I didn't do any of the setup and am new to the project. I'm trying to set up remote debugging in Eclipse for these unit tests that use Cactus. I've read around a ...
0
votes
2answers
68 views

OutOfMemoryError trying to run Cactus unit tests

We have a Hudson/Ant build setup. I have just added a series of Apache Cactus (version 1.8.1) unit tests to the project and am trying to run them after the project builds. I get the following error ...
0
votes
1answer
263 views

EJB not getting injected into the tested servlet

I am using Cactus to test a servlet which has an injected ejb (EJB 3.0) using @EJB annotation. The servlet is working fine when executed as part of the web application but while running the cactus ...