(self)
| 262 | self.assertEqual(expect, result) |
| 263 | |
| 264 | def test_atan(self): |
| 265 | expect = make_expression_graph({ |
| 266 | 'arguments': { |
| 267 | 'input': ARRAY_ONE, |
| 268 | }, |
| 269 | 'functionName': 'Array.atan', |
| 270 | }) |
| 271 | expression = ee.Array([1]).atan() |
| 272 | result = json.loads(expression.serialize()) |
| 273 | self.assertEqual(expect, result) |
| 274 | |
| 275 | def test_atan2(self): |
| 276 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected