(final Stack stack, final PostfixMathCommandI pCommand)
| 33 | public class OrCommandTest |
| 34 | { |
| 35 | private static void runOr(final Stack stack, final PostfixMathCommandI pCommand) |
| 36 | { |
| 37 | try |
| 38 | { |
| 39 | pCommand.run(stack); |
| 40 | } |
| 41 | catch (ParseException ignored) |
| 42 | { |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | /* Test the case where the first operand is true */ |
| 47 | @Test |