| 55 | //------------------------------------------------------------------------------ |
| 56 | |
| 57 | TEST_F(ProgressReporterTest, shouldDisplayZeroPercentWhenFirstCalled) |
| 58 | { |
| 59 | progress_reporter_.update(0.0, 0, 100); |
| 60 | |
| 61 | ASSERT_THAT(error.str(), StrEq("\rDone: 0%")); |
| 62 | } |
| 63 | |
| 64 | //------------------------------------------------------------------------------ |
| 65 |