| 86 | class CronTestMonthDay : public testing::Test { |
| 87 | protected: |
| 88 | explicit CronTestMonthDay() { |
| 89 | cron_ = std::make_unique<Cron>(); |
| 90 | std::vector<std::string> schedule{"0", "3", "5", "*", "*"}; |
| 91 | auto s = cron_->SetScheduleTime(schedule); |
| 92 | EXPECT_TRUE(s.IsOK()); |
| 93 | } |
| 94 | ~CronTestMonthDay() override = default; |
| 95 | |
| 96 | std::unique_ptr<Cron> cron_; |
nothing calls this directly
no test coverage detected