Question 15
Consider the following function to be tested and test functions given in the Python code snippet below.
def sample_function(x): ser = [] for i in range(x): ser.append((i)**2) return ser
def test_func1(): assert 36 in sample_function(7)
def test_func2(): assert 64 in sample_function(8)
def sample_test3(): assert 81 in sample_function(11)What will be the summary of the output for the command pytest file.py on the terminal?