Tell me more ×
Software Quality Assurance & Testing Stack Exchange is a question and answer site for software quality control experts, automation engineers, and software testers. It's 100% free, no registration required.

I am building a BDD-like system that would allow converting of pseudo-English into executable code for web testing. Our current test system is built in Java, using TestNG and Selenium to perform tests.

At this point I have a JBehave+TestNG system running simple web tests. The problem that I have is in reporting the test results. The JBehave examples show to extend the JUnitStories class, overloading the "run()" method with the TestNG @Test annotation. Indeed, that gets the TestNG drive the tests, but all results reporting reduces to a single test - "run". Also, all error information is lost in this reduction process.

I am trying to find a way to extend the TestNG reporting when running JBehave scenarios. Ideally, I would have something similar to what has been done for JUnit. Is anyone aware of such integration for TestNG?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.