public void RotorSet_DoubleRightRotation_Test_2() { var rotorSet = new RotorSet(2); rotorSet.RightRotate(60); rotorSet.Rotors[0].Position.Should().Be(60); rotorSet.Rotors[1].Position.Should().Be(2); }
public void TripleRotorSet_TripleRightRotation_Test() { var rotorSet = new RotorSet(3); rotorSet.RightRotate(677); rotorSet.Rotors[0].Position.Should().Be(677); rotorSet.Rotors[1].Position.Should().Be(25); rotorSet.Rotors[2].Position.Should().Be(0); }