Beispiel #1
0
 public void EnumToolsGetNext()
 {
     Assert.AreEqual(Robot.Two, EnumTools.GetNext(Robot.One));
     Assert.AreEqual(Robot.Three, EnumTools.GetNext(Robot.Two));
     Assert.AreEqual(Robot.One, EnumTools.GetNext(Robot.Three));
 }