Tagged Questions
0
votes
0answers
23 views
Testing of EJB3.0 deployed on weblogic 10.3.5 using JUNIT
Found arquillian can do so but it can be done using some Maven dependencies.There is no much document found for its configuration with ANT , Using IVY.xml with ant build file we can use arquillian.
I ...
0
votes
2answers
48 views
Get() and Set() between multiple @Test, Selenium WebDriver
I'm using Selenium WebDriver and Arquillian drone for these test.
how my tests are build :
@RunWith(Arquillian.class)
public class SimpleTest{
private String idPo;
public String getIdPo() {
...
1
vote
0answers
37 views
JUnit RunNotifier and fireTestRunFinished
I'm trying to execute some Arquillian tests from Ant (1.8.2, with junit4 support) but it seems that the Ant task does not call RunNotifier.fireTestRunFinished() and the Arquillian test runner counts ...
1
vote
1answer
72 views
Configure Arquillian to test Tomcat managed Datasource
Writing a JUnit test case for a findByFK method. This method gets database connection from container managed datasource. I am trying to resolve it with the help of Arquillian. I am fairly new to ...
1
vote
0answers
80 views
Provider for type class java.net.URL returned a null value (Arquillian)
I've been trying to make this test work:
@RunWith(Arquillian.class)
@RunAsClient
public class AnnotatedEchoServletTestCase {
@Deployment(testable = false)
public static WebArchive ...
3
votes
1answer
627 views
DeployableContainer must be specified error when running Arquillian
I've been trying to run this Arquillian example
https://github.com/arquillian/arquillian-examples/tree/master/arquillian-tutorial
There is no error when imported in Eclipse
However I am getting ...
0
votes
1answer
181 views
Debugging with Arquillian in IntelliJ - Managed Container
I've tried many times to debug a Test in managed container enviroment.
I get errors like JDWP Transport Error, socket failed to initialize. Means I can not initialize arquillian with the below ...
0
votes
1answer
108 views
How to consistently test AJAX using Arquillian Graphene?
I am running Arquillian Graphene (2.0.0.Alpha3) with WebDriver and I am getting inconsistent results. At times, my JUnit test will pass without a problem and other times I will get errors like this:
...
1
vote
0answers
105 views
Arquillian testing with JBoss 4.2.2 GA ends with “Could not get DeploymentManager”
I've tried to do a simple test-example using arquillian on an installed JBoss, whose version is 4.2.2GA. Spent tons of time on it and did a lot of readings in this comnunity and stackflow, but just ...
0
votes
1answer
117 views
Arquillian Weld-EE test setup with ant+ivy
I set up a project following the getting started guide. I have to use ivy. These are my dependencies:
<dependencies>
<dependency org="org.jboss.spec" name="jboss-javaee-all-6.0" ...
1
vote
0answers
482 views
How to test for application exceptions Arquillian, EJB, JUnit
I am having problems testing application exceptions thrown within an EJB. I am using JUnit, Arquillian, JBoss. I may have a missunderstanding how EJB's should be programmed/tested. If I need to ...
0
votes
3answers
224 views
How to test JPA in Arquillian
I am trying to use Arquillian to test my JPA repository classes. However I only get nullpointer exception telling me that it doesn't find the persistence.xml. How do you configure it in a standard ...
0
votes
1answer
390 views
Arquillian JUnit Testsuite
I was wondering if Arquillian supports Test Suites since it's not documented. I would like to create a common deployment for my suite and let the tests of that suite run with that single deployment.
...
1
vote
0answers
385 views
Integration tests with Arquillian and Arquillian Spring Framework Extension
I would like to set up an infrastructure for integration testing.
Currently we bootstrap tomcat using maven and then execute httpunit tests.
But the current solution has few drawbacks.
Any changes ...
2
votes
1answer
472 views
How to write JUnit test when I use getUserPrincipal() and isCallerInRole() method in an enterprise bean?
My environment is Jboss AS 7.1.0. I am using JUnit and Arquillian for unit testing. I have SSBs that use getUserPrinicipal(), and isCallerInRole() methods in my ejbs. In order to unit test these ejb ...
0
votes
0answers
175 views
The Arquillian test case which sharing super class for deployment only succes with 2 rounds
I'm in the Eclipse/Maven/Arquillian environment. I've the JUnit/Arquillian test case which shares the super class for deployment as the following: -
The Utility for creating ear
public class ...
1
vote
0answers
247 views
Eclipse JUnit Arquillian without Maven
In my project i have a user library that contains all the necessary libs for running the arquillian junit test and it works perfectly within the IDE.
The problem now is, that the Test classes would be ...
1
vote
0answers
289 views
Updating the HTTP session in a GWT service test with Arquillian
I'm trying to test an application protected by a certificate, hence I have a filter putting the certificate in the HTTP session in front of my servlet.
This is a GWT application, so I'm using ...
1
vote
2answers
680 views
Using both Arquillian and PowerMock in the same JUnit test
I would like to use the features of both Arquillian and PowerMock in the same JUnit 4 test.
The problem is that both products are JUnit Runners which should be used with @RunWith, and this is not ...
5
votes
4answers
622 views
JUnit @Ignore all other tests (@IgnoreOther ?)
I'm testing extensively with JUnit and sometimes - while debugging my code - I want (temporary) only run a single @Test of my @RunWith(Arquillian.class) test class. Currently I'm adding a @Ignore to ...
3
votes
2answers
2k views
Arquillian/JUnit tests run from console but not inside Eclipse
I've setup our project with some JUnit tests that are run by Arquillian inside the full JBoss Server (inside a profile called jboss-remote-6). I pretty much did everything as in the manual at ...
