Skip to content

Instantly share code, notes, and snippets.

@maniish-jaiin
Created July 15, 2020 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maniish-jaiin/a147a7eb6fcf611fdd6728ca5b47db5e to your computer and use it in GitHub Desktop.
Save maniish-jaiin/a147a7eb6fcf611fdd6728ca5b47db5e to your computer and use it in GitHub Desktop.
@Test
public void addNumbersWhenPlusOperatorIsFound() {
ReversePolishNotation rpn = new ReversePolishNotation();
double result = rpn.evaluate("3 4 +");
assertEquals(7.0, result, 0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment