Test dumping the results to csv file in a local StringIO object.
(self)
| 169 | self.assertIsInstance(df, pd.DataFrame) |
| 170 | |
| 171 | def test_csv_dump(self): |
| 172 | """Test dumping the results to csv file in a local StringIO object.""" |
| 173 | with WorkflowProfiler() as wp: |
| 174 | self.scale(self.test_image) |
| 175 | |
| 176 | sio = StringIO() |
| 177 | wp.dump_csv(sio) |
| 178 | self.assertGreater(sio.tell(), 0) |
| 179 | |
| 180 | @SkipIfNoModule("ignite") |
| 181 | def test_handler(self): |
nothing calls this directly
no test coverage detected