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)) |