0
votes
0answers
8 views
How to test that observer of org.jboss.seam.postInitialization works correctly
Hi
I've created SEAM component which checks that at least one user with global admin rights exists and creates one if no.
@Name("installer")
@Stateless
public class InstallerBean …
0
votes
2answers
45 views
How to execute one test from large TestNG suite using testng.xml?
I have a TestNG suite with large amount of methods. I execute this suite using wrapper built on top of TestNG runner. All tests in the suite fail except one. What should I write in …
0
votes
2answers
37 views
Putting array of arrays into a spring context
I just found a TestNG test case that uses Spring to provide its data source. As a result the code is quite clean and concise.
However, I need to expand the test cases so they can …
0
votes
0answers
42 views
TestNG + Selenium woes. noClassDef error, TestNG based selenium test
Hello,
I've followed a lot of the guides and forum posts online but haven't had any luck getting this to work inside TestNG. It's a selenium grid based test, programmed in eclipse …
1
vote
2answers
72 views
How can I test a .class file was created?
I want to unit test my code which will have to create a .java file compile it and then the corresponding .class file should be created.
How can I create the test to see if the ".c …
0
votes
2answers
532 views
selenium rc with cruise control - testng error message - could not instantiate ‘test’
I'm currently trying to set up cruisecontrol to run my selenium test suite. Everything works fine until I run the build, I got the following message:
calling target(s) [execute-te …
1
vote
5answers
330 views
TestNG and Spring 3
Hi guys,
What is the best practice way to do unit testing with Spring? I assume the combination TestNG & jmockit with Spring 3 isn't bad, so that's what I'm doing right now, bu …
0
votes
1answer
84 views
Is there a log4j appender that connects with TestNG?
I use log4j and would like log messages that normally end up in my logging facility to appear in the test reports created by TestNG during my unit tests.
I think that would mean a …
1
vote
1answer
145 views
Spring3/Hibernate3/TestNG: some tests give LazyInitializationException, some don’t
Dear Sirs,
The preface: I'm struggeling with LazyInitializationException in my Unit Tests, and I have a really hard time getting my head around it, as you can see from my question …
0
votes
2answers
73 views
How to change TestNG dataProvider order
Hi, I am running hundreds of tests against a large publishing system and would like to paralellize the tests using TestNG. However, I cannot find any easy way of doing this. Each …
0
votes
1answer
30 views
TestNg, annotation “beforeTestMethod” and override
For my tests I'm using a base class MyTestBase defining a method setup() that does some base preparations:
public class MyTestBase {
@Configuration( beforeTestMethod=true )
…
4
votes
2answers
158 views
How can I identify the Selenium Grid host running my test from within the test?
I am using Selenium Grid with TestNG to run my tests in parallel. I have certain tests that require a user to be logged in, so I have a user account configured for testing.
I have …
1
vote
2answers
82 views
LazyInitializationException while unit-testing Hibernate entity classes for use in Spring, using TestNG
Hi guys,
In my Spring configuration, I've asked that the session should remain open in my views:
<bean name="openSessionInViewInterceptor" class="org.springframework.orm.hib …
3
votes
7answers
463 views
How to create structured automatic testing with selenium (junit or testng)? What is your best practice for this?
I have written tests that are using selenium for functional testing. I'm using Java. I would like to be able to create structure between tests. Is it possible to do it with jUnit o …
0
votes
1answer
376 views
Possible to pass parameters to TestNG DataProvider?
We would like to run some of our tests each against a set of data values, verifying that the same conditions hold true for each. The data is currently stored in either flat files …
