TestingFunctionSummary
Testing Function Summary Object
name string
Name of the test function (matched with exact python method name)
Example:
similarity_score_shared
content string
Contents of test function
Example:
def similarity_score_shared(input_text: str, expected_output: str, predicted_output: str):
...
dependencies string[]
Example:
["external-library"]
TestingFunctionSummary
{
"name": "similarity_score_shared",
"content": "def similarity_score_shared(input_text: str, expected_output: str, predicted_output: str): \n ...",
"dependencies": [
"external-library"
]
}