()
| 318 | def testCursesUiInChildThreadStartsWithoutException(self): |
| 319 | result = queue.Queue() |
| 320 | def child_thread(): |
| 321 | try: |
| 322 | MockCursesUI(40, 80) |
| 323 | except ValueError as e: |
| 324 | result.put(e) |
| 325 | t = threading.Thread(target=child_thread) |
| 326 | t.start() |
| 327 | t.join() |
nothing calls this directly
no test coverage detected