You cannot post messages because only members can post, and you are not currently a member.
Description:
Mailing-list for developers of the TestNG testing framework (http://testng.org)
|
|
|
Implementing multiple listener interfaces
|
| |
I have a class that implements both IInvokedMethodListener and IReporter - the use case is that I record some information while the test runs and I output it at the end. What I found is that my listener gets called multiple times per test method invocation. The reason I have found so far is that the... more »
|
|
New Feature: Possible changes to TestNG.run()
|
| |
Hi I also put this on git hub but this might be a better fit :-) This post is to gauge if there would be an appetite to augment the current TestNG.run() method and add three new public methods e.g prepareRun(), performRun() and postRun(). The reasoning for this is as follows:- The use case is that we would like to schedule the running of all tests... more »
|
|
com.beust.jcommander.Parameter Exception
|
| |
Hi all@testng-dev, Sorry in advance if this topic has been discussed before, but there is an interesting thing happening when running TestNG from the command line: java -classpath testng-6.8.1.jar org.testng.TestNG Exception in thread "main" java.lang.NoClassDefFoundError : com/beust/jcommander/Parameter Exception... more »
|
|
BUG: Non UTF-8 byte sequence in junitreports XML
|
| |
Hi, I'm using testng with Jenkins running on Tomcat. Unfortunately, TestNG Results Plugin for Jenkins suffers from multiple bugs and usability issues, so I have to use JUnit Reports plugin running off junitreports produced by testng. But testng produces a invalid UTF-8 encoded xml reports with raw... more »
|
|
failures reported as errors in junitreport
|
| |
See attached environment This may be a misunderstanding on my part Occurs using both eclipse plugin and ant task To repro: Testclass: package com.example.pkg; import static org.testng.Assert.*; import org.testng.annotations.Test: public class JunitExample { @Test public void firstTest() { assertTrue( true, "This assertion and test passes" );... more »
|
|
|