(self: typing.Any)
| 113 | super().tearDown() # type: ignore |
| 114 | |
| 115 | def test_future(self: typing.Any): |
| 116 | future = self.client.capitalize("hello") |
| 117 | self.io_loop.add_future(future, self.stop) |
| 118 | self.wait() |
| 119 | self.assertEqual(future.result(), "HELLO") |
| 120 | |
| 121 | def test_future_error(self: typing.Any): |
| 122 | future = self.client.capitalize("HELLO") |
nothing calls this directly
no test coverage detected