I want to get the test name and test result during runtime. i have setup and tearDown methods in my script. and in setup method i need to get the test name and in tearDown i need to get the test result and test execution time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
unittest.TestCase.id() this will return the complete Details including class name , method name . From this we can extract test method name. Getting the results during can be achieved by checking if there any exceptions in executing the test. If the test fails then there wil be an exception if sys.exc_info() returns None then test is pass else test will be fail. |
|||
|
|