| 342 | class CronTestWeekDayInterval : public testing::Test { |
| 343 | protected: |
| 344 | explicit CronTestWeekDayInterval() { |
| 345 | cron_ = std::make_unique<Cron>(); |
| 346 | std::vector<std::string> schedule{"0", "*", "*", "*", "*/4"}; |
| 347 | auto s = cron_->SetScheduleTime(schedule); |
| 348 | EXPECT_TRUE(s.IsOK()); |
| 349 | } |
| 350 | ~CronTestWeekDayInterval() override = default; |
| 351 | |
| 352 | std::unique_ptr<Cron> cron_; |
nothing calls this directly
no test coverage detected