@Test(dataProvider = "provideGoodSamples")
public void shouldParseSuccessfully(String template, String initialValue, String expectedResult) {
MathParser mathParser = new MathParser();
String realResult = mathParser.parse(template, initialValue);
assertThat(realResult, is(expectedResult));
}