- [ ] add test class for test function ```python def test(got, expected): """ Test function """ if got == expected: prefix = " OK " else: prefix = " X " print(f"{prefix} got: {got} expected: {expected}") ```