(self)
| 164 | self.assertEqual(expect, result) |
| 165 | |
| 166 | def test_abs(self): |
| 167 | expect = make_expression_graph({ |
| 168 | 'functionName': 'Array.abs', |
| 169 | 'arguments': { |
| 170 | 'input': ARRAY_ONE, |
| 171 | }, |
| 172 | }) |
| 173 | expression = ee.Array([1]).abs() |
| 174 | result = json.loads(expression.serialize()) |
| 175 | self.assertEqual(expect, result) |
| 176 | |
| 177 | def test_accum(self): |
| 178 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected