(self)
| 995 | self.assertEqual(expect, result) |
| 996 | |
| 997 | def test_array_dimensions(self): |
| 998 | expect = make_expression_graph({ |
| 999 | 'arguments': { |
| 1000 | 'input': IMAGE, |
| 1001 | }, |
| 1002 | 'functionName': 'Image.arrayDimensions', |
| 1003 | }) |
| 1004 | expression = ee.Image('a').arrayDimensions() |
| 1005 | result = json.loads(expression.serialize()) |
| 1006 | self.assertEqual(expect, result) |
| 1007 | |
| 1008 | def test_array_dot_product(self): |
| 1009 | expect = make_expression_graph({ |
nothing calls this directly
no test coverage detected