(self)
| 197 | self.assertEqual(expect, result) |
| 198 | |
| 199 | def test_acos(self): |
| 200 | expect = make_expression_graph({ |
| 201 | 'arguments': { |
| 202 | 'input': ARRAY_ONE, |
| 203 | }, |
| 204 | 'functionName': 'Array.acos', |
| 205 | }) |
| 206 | expression = ee.Array([1]).acos() |
| 207 | result = json.loads(expression.serialize()) |
| 208 | self.assertEqual(expect, result) |
| 209 | |
| 210 | def test_add(self): |
| 211 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected