我想用自己的方法替换一个方法,所以我在python中找到了mock,但是我想知道是否有一些方法可以让一个函数参数在运行时重用,因为我自己的方法mymethod应该做一些操作基于那个????
class a
def thing()
exec(argument1)
test tester():
with patch(a.thing.exec, self.mymethod, spec=true) as mock_method
mock_method(argument1, otherargument)