本文整理汇总了C#中Schedule.Next方法的典型用法代码示例。如果您正苦于以下问题:C# Schedule.Next方法的具体用法?C# Schedule.Next怎么用?C# Schedule.Next使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Schedule
的用法示例。
在下文中一共展示了Schedule.Next方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Check
public void Check(string format, DateTimeOffset start, DateTimeOffset prev, DateTimeOffset next)
{
var sch = new Schedule(format);
var actualPrev = sch.Previous(start);
Assert.AreEqual(prev.ToString("o"), actualPrev.ToString("o"), "Previous time was incorrect.");
var actualNext = sch.Next(start);
Assert.AreEqual(next.ToString("o"), actualNext.ToString("o"), "Next time was incorrect.");
}
示例2: Check
public void Check(string format, DateTimeOffset start, DateTimeOffset? prev, DateTimeOffset? next, int? parseErrorIndex)
{
Schedule sch;
try
{
sch = new Schedule(format);
if (parseErrorIndex.HasValue)
throw new Exception($"Expected a parse error at index {parseErrorIndex}, but no exception was thrown.");
}
catch (SchyntaxParseException ex)
{
if (parseErrorIndex.HasValue)
{
if (ex.Index == parseErrorIndex)
return;
throw new Exception($"Wrong parse error index. Expected: {parseErrorIndex}. Actual: {ex.Index}", ex);
}
throw;
}
try
{
var actualPrev = sch.Previous(start);
if (!prev.HasValue)
throw new Exception($"Expected a ValidTimeNotFoundException. Date returned from Previous: {actualPrev}.");
Assert.AreEqual(prev.Value.ToString("o"), actualPrev.ToString("o"), "Previous time was incorrect.");
}
catch (ValidTimeNotFoundException)
{
if (prev.HasValue)
throw;
}
try
{
var actualNext = sch.Next(start);
if (!next.HasValue)
throw new Exception($"Expected a ValidTimeNotFoundException. Date returned from Next: {actualNext}.");
Assert.AreEqual(next.Value.ToString("o"), actualNext.ToString("o"), "Next time was incorrect.");
}
catch (ValidTimeNotFoundException)
{
if (next.HasValue)
throw;
}
}