cron-expression-descriptor icon indicating copy to clipboard operation
cron-expression-descriptor copied to clipboard

Issues with DOW Interval /list combo (0 0 12 ? * TUE,FRI/4)

Open bradymholt opened this issue 4 years ago • 0 comments

0 0 12 ? * TUE,FRI/4

Actual: ... 12:00 PM, every 4 days of the week Should be: .... 12:00 PM, every Tuesday and every 4 weeks only on Friday

Tests

public void TestEvery2WeeksOnFriday()
{
    Assert.Equal("At 12:00 PM, every 2 weeks, only on Friday", GetDescription("0 0 12 ? * FRI/2"));
}
[Fact]
public void TestEvery3WeeksWedThroughFri()
{
    Assert.Equal("At 12:00 PM, every 3 weeks, Wednesday through Friday", GetDescription("0 0 12 ? * WED-FRI/3"));
}
[Fact]
public void TestEvery4WeeksTueAndFri()
{
    Assert.Equal("At 12:00 PM, every 4 weeks, only on Tuesday and Friday", GetDescription("0 0 12 ? * TUE,FRI/4"));
}

bradymholt avatar Jan 14 '20 14:01 bradymholt