我现在正在尝试使用 mock.patch 模拟一个函数,例如:
with mock.patch.object(self.myClass, 'MyClassMethod', return_value=None) as mock_MyMethod:
self.myClass.start()
mock_MyMethod.assert_called_once_with()
现在我想让 MyClassMethod 打印“hello word!!” 当它被调用时。谁能帮我找到解决方案。
提前致谢,