您好我有以下测试类 logintests.py:
class ResetPasswordTests(unittest.TestCase):
def test_mytest(self):
#somecode
#Should Call SignOnTests.test_login_info()
passwordtests.py:
{{1}}
我尝试过使用passwordtests.py: 从logintests导入SignOnTests 但是继续使用gettingType:非绑定方法test_login_info()必须使用SignOnTests实例作为第一个参数调用(没有取而代之)
是否可以在另一个模块中调用测试方法?