Lately we upgraded our TestNG eclipse plugin and we found that the
text box used for attaching TestNG listeners is missing. I guess
another way of setting those listeners is used now.
Can you please advice on this.
thanks, Nikolay
--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.
--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.
I think there is one more thing that needs fixing. The problem is that
the suite name from the template file gets precedence over the suite
name from the xml file which defines which tests to run.
We are implementing a ISuiteListener and the following code:
public void onStart( ISuite suite ) {
String suiteName = suite.getName()
}
results in giving us the suite name from the template file. If no such
name is defined, we get a null
thank you very much for your support,
Nikolay
He Cedric,
it works just fine. Thank you for this so quick fix.
I think there is one more thing that needs fixing. The problem is that
the suite name from the template file gets precedence over the suite
name from the xml file which defines which tests to run.
- If you launch an XML file, the name found in that file is used.
THE PROBLEM IS: we have to specify the listeners in each XML file,
while before we were able to globally specify them in the TestNG
preferences page. This was more convenient to us as we needed t
- If you launch something else (class, group, package, method),
the name found in the template file is used.
THE PROBLEM IS: It will use the name in the template, while before it
would construct it by the class name for example
regards,
Nikolay