You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.
What steps will reproduce the problem?
I have a test class like this:
@Test(enabled = false)
public class MyTest {
@DataProvider(name = "bla")
private Object[][] bla() {
return new Object[][] {
new Object[] { "bla"}
};
}
@Test(dataProvider = "bla")
public void blatest(String bla) {
System.out.println(bla);
}
}
What is the expected output? What do you see instead?
I would expect method blatest not to run and no console output. Instead blatest
runs and prints "bla".
What version of the product are you using? On what operating system?
I've tested with testng 5.11/6.0.1, running from maven 2.2.1/3.0.3 with
surefire plugin 2.7.2.
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 12 Jul 2011 at 4:48
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Jul 2011 at 4:48The text was updated successfully, but these errors were encountered: