← Back to team overview

sikuli-driver team mailing list archive

[Question #677290]: Order of functions called in Sikuli

 

New question #677290 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677290

class Test_a(unittest.TestCase):
       def test_A(self):
           print("abc")
            .......
             ..........

         def test_Z(self):
            ..............
suite = unittest.TestLoader().loadTestsFromTestCase(Test_a)
outfile = open("C:\Tools\sree.html", "w")
runner = HTMLTestRunner.HTMLTestRunner(stream=outfile, title='Test Report', description='This is demo' )
runner.run(suite)
outfile.close()

q1. How to ensure my functions are executed in the order from A TO Z.
q2. whats the error .EEE...E.E
Time Elapsed: 0:01:03.349000




-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.