0
votes
0answers
30 views

TestNG's Paramerised tests are not working in arquillian in container mode?

I'm using TestNG as testing Framework and Arquillian test Runner. While testing beans using arquillian in container mode, parametrized tests are not working? Both Data provider and Parameters ...
1
vote
0answers
25 views

With arquillian incontainer mode ,Why Test method is getting exeduted square of the times of values returned by data provider in testng?

I'm using TestNG as Unit Test Framework and Jboss AS7.1.1 Final as server The data provider and Test methods works well in Client Mode The same dataprovider will return 10 rows and my Test method ...
0
votes
1answer
95 views

Unit testing EJBs on Jboss 4.3?

Is there anything similar to Embedded Glassfish, where one can unit test EJBs, for Jboss 4.3 AS. I have googled and came to know about a tool Arquillian and later figured out that it doesnt support ...
2
votes
0answers
332 views

Maven with automated testing using TestNG, JSFUnit 2 and Arquillian

im currently trying to make a JSFUnit-Test with Arquillian and TestNG, but the JSFServerSession and JSFClientSession-object is NULL. Is there a working EXAMPLE for having JSFUnit and TestNG? Or is ...
0
votes
1answer
425 views

How to test Spring in an application server container with Arquillian?

We are trying to run integration tests of Spring based code on an embedded tomcat container using TestNG framework. We have tried to use the existing Arquillian Spring Extension without much success. ...
2
votes
0answers
384 views

@BeforeClass annotations invoking methods twice when using Arquillian on remote server

We're transitioning from using TestNG with an embedded JBoss to using Arquillian with a remote server. We are running a simple test that has a method annotated with @BeforeClass that does some test ...
2
votes
1answer
441 views

TestNG - injection fails when using any @Before* annotation but works without

I would like to use the @Inject annotation in my TestNG test case. The test is executed by Arquillian in a remote JBoss AS 6 instance. The test basically looks like this: Test case public class ...