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

Method test_acos

python/ee/tests/image_test.py:879–888  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

877 self.assertEqual(expect, result)
878
879 def test_acos(self):
880 expect = make_expression_graph({
881 'arguments': {
882 'value': IMAGE,
883 },
884 'functionName': 'Image.acos',
885 })
886 expression = ee.Image('a').acos()
887 result = json.loads(expression.serialize())
888 self.assertEqual(expect, result)
889
890 def test_add(self):
891 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