Skip to content

Instantly share code, notes, and snippets.

@zdwolfe
Last active August 29, 2015 14:25
Show Gist options
  • Save zdwolfe/8bfd7007e5fe862314a2 to your computer and use it in GitHub Desktop.
Save zdwolfe/8bfd7007e5fe862314a2 to your computer and use it in GitHub Desktop.
@DataProvider(name = "testStringProvider")
public Object[][] testStringProvider() {
return new Object[][] {
{ "blue", "BLUE" },
{ "red", "RED"}
};
}
@Test(dataProvider = "testStringProvider")
public void shouldConvertToUpperCase(String inputString, String expected ) {
final String actual = inputString.toUpperCase();
assertThat(actual, is(expected));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment