| 152 | class CronTestWeekDay : public testing::Test { |
| 153 | protected: |
| 154 | explicit CronTestWeekDay() { |
| 155 | cron_ = std::make_unique<Cron>(); |
| 156 | std::vector<std::string> schedule{"0", "3", "*", "9", "0"}; |
| 157 | auto s = cron_->SetScheduleTime(schedule); |
| 158 | EXPECT_TRUE(s.IsOK()); |
| 159 | } |
| 160 | ~CronTestWeekDay() override = default; |
| 161 | |
| 162 | std::unique_ptr<Cron> cron_; |
nothing calls this directly
no test coverage detected