Question 14
Consider the following Python code
File name: main_test.py
import pytest
class TestGroup:
def do_something(self, x, y): return x % y
def test_one(self): assert self.do_something(10, 5) == 0, " Is 5 factor of 10? "
def test_two(self): assert self.do_something(32, 5) == 0, " Is 5 factor of 32 "What will be the output of running the above python script using command line “pytest -v main_test.py”?