(self)
| 251 | self.assertEqual(expect, result) |
| 252 | |
| 253 | def test_asin(self): |
| 254 | expect = make_expression_graph({ |
| 255 | 'arguments': { |
| 256 | 'input': ARRAY_ONE, |
| 257 | }, |
| 258 | 'functionName': 'Array.asin', |
| 259 | }) |
| 260 | expression = ee.Array([1]).asin() |
| 261 | result = json.loads(expression.serialize()) |
| 262 | self.assertEqual(expect, result) |
| 263 | |
| 264 | def test_atan(self): |
| 265 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected