Example #1
0
        public void Test_TAGProcessorStateBase_SetControlStateLift()
        {
            var state = new TAGProcessorStateBase();

            Assert.Equal(state.ControlStateLift, MachineControlStateFlags.NullGCSControlState);
            state.SetControlStateLift(100);
            Assert.Equal(100, state.ControlStateLift);
        }