NextHalfyear() public static method

public static NextHalfyear ( HalfyearKind startHalfyearKind ) : YearAndHalfyear
startHalfyearKind HalfyearKind
return YearAndHalfyear
Ejemplo n.º 1
0
 public void NextHalfyearTest()
 {
     TimeTool.NextHalfyear(HalfyearKind.First).Halfyear.Should().Be(HalfyearKind.Second);
     TimeTool.NextHalfyear(HalfyearKind.Second).Halfyear.Should().Be(HalfyearKind.First);
 }