(self)
| 240 | self.assertEqual(expect, result) |
| 241 | |
| 242 | def test_argmax(self): |
| 243 | expect = make_expression_graph({ |
| 244 | 'arguments': { |
| 245 | 'array': ARRAY_ONE, |
| 246 | }, |
| 247 | 'functionName': 'Array.argmax', |
| 248 | }) |
| 249 | expression = ee.Array([1]).argmax() |
| 250 | result = json.loads(expression.serialize()) |
| 251 | self.assertEqual(expect, result) |
| 252 | |
| 253 | def test_asin(self): |
| 254 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected