src/eric7/Testing/Interfaces/UnittestRunner.py

branch
eric7
changeset 10404
f7d9c31f0c38
parent 9653
e67609152c5e
child 10405
df7e1694d0eb
equal deleted inserted replaced
10403:ea3320d5e8e9 10404:f7d9c31f0c38
253 253
254 @param suite test suite to be inspected 254 @param suite test suite to be inspected
255 @type unittest.TestSuite 255 @type unittest.TestSuite
256 @return list of tuples containing the test case ID, the string 256 @return list of tuples containing the test case ID, the string
257 representation and the short description 257 representation and the short description
258 @rtype list of tuples of (str, str) 258 @rtype list of tuples of (str, str, str)
259 """ 259 """
260 testCases = [] 260 testCases = []
261 for test in suite: 261 for test in suite:
262 if isinstance(test, unittest.TestSuite): 262 if isinstance(test, unittest.TestSuite):
263 testCases.extend(_assembleTestCasesList(test)) 263 testCases.extend(_assembleTestCasesList(test))

eric ide

mercurial