(self)
| 603 | self.assertEqual(wrapped_future.result(), (('foo',), {'biz': 'baz'})) |
| 604 | |
| 605 | def test_done(self): |
| 606 | with ThreadPoolExecutor(max_workers=1) as executor: |
| 607 | future = executor.submit(return_call_args, 'foo', biz='baz') |
| 608 | wrapped_future = ExecutorFuture(future) |
| 609 | self.assertTrue(wrapped_future.done()) |
| 610 | |
| 611 | def test_add_done_callback(self): |
| 612 | done_callbacks = [] |
nothing calls this directly
no test coverage detected