()
| 36 | } |
| 37 | |
| 38 | @Test |
| 39 | public void testAdd02() { |
| 40 | ELProcessor processor = new ELProcessor(); |
| 41 | Long result = processor.eval("null + null"); |
| 42 | Assert.assertEquals(Long.valueOf(0), result); |
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | public void testSubtract01() throws Exception { |