Oct-11-2017, 11:20 AM
File A and B are in separate folders. In File A my code are like this:
As you can see in File B I want to call the testA function but this way does not work:
class A(unittest.Testcase): def testA(self): some code...
As you can see in File B I want to call the testA function but this way does not work:
from FileA import A class B(unittest.TestCase): def testA(self): A.testA()