Last active
January 19, 2017 11:34
-
-
Save kolmakovruslan/c07a5f6771f987f0534f890dcf93b34d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Main { | |
| public static void main(String[] args) { | |
| Calculator calculator = new Calculator(); | |
| if (calculator.calc("2 + 2") != 4) throw new RuntimeException(); | |
| if (calculator.calc("2 - 2") != 0) throw new RuntimeException(); | |
| if (calculator.calc("2 * 2") != 4) throw new RuntimeException(); | |
| if (calculator.calc("2 / 2") != 1) throw new RuntimeException(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment