MCPcopy
hub / github.com/google/earthengine-api / test_acos

Method test_acos

python/ee/tests/ee_array_test.py:199–208  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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({

Callers

nothing calls this directly

Calls 3

make_expression_graphFunction · 0.70
acosMethod · 0.45
serializeMethod · 0.45

Tested by

no test coverage detected