Beispiel #1
0
        public void Rotor_AdvanceIndex_AdvancesCurrentIndexBy1()
        {
            Rotor rotor = InitRotor();

            rotor.AdvanceIndex();

            int expected = 1;
            int actual   = rotor.CurrentIndex;

            Assert.AreEqual(expected, actual);
        }