我将如何测试不返回任何内容的函数?
例如,假设我有这个功能:
def is_in(char):
my_list = []
my_list.append(char)
然后如果我要测试它:
class TestIsIn(unittest.TestCase):
def test_one(self):
''' Test if one character was added to the list'''
self.assertEqual(self.is_in('a'), # And this is where I am lost)
我不知道要断言该函数等于什么,因为没有任何返回值可以与之进行比较。
assertIn 会起作用吗?