(
function_invocation_value: dict[str, Any],
)
| 24 | |
| 25 | |
| 26 | def make_expression_graph( |
| 27 | function_invocation_value: dict[str, Any], |
| 28 | ) -> dict[str, Any]: |
| 29 | return { |
| 30 | 'result': '0', |
| 31 | 'values': {'0': {'functionInvocationValue': function_invocation_value}}, |
| 32 | } |
| 33 | |
| 34 | |
| 35 | class EeArrayTest(apitestcase.ApiTestCase): |
no outgoing calls
no test coverage detected