Exemplo n.º 1
0
        public void Test_TAGProcessorStateBase_SetControlStateLeftLift()
        {
            var state = new TAGProcessorStateBase();

            Assert.Equal(state.ControlStateLeftLift, MachineControlStateFlags.NullGCSControlState);
            state.SetControlStateLeftLift(100);
            Assert.Equal(100, state.ControlStateLeftLift);
        }