public void SimpleViewModelCreationTestMethod()
 {
     using (StateMachineContextMoc _sm = new StateMachineContextMoc())
     {
         SimpleViewModel _svm = new SimpleViewModel();
     }
 }
        public void ButtonsPanelBaseCreationTest()
        {
            StateMachineContextMoc _sm  = new StateMachineContextMoc();
            ButtonsPanelBase       _bpb = new ViewModel.Wizard.ButtonsPanelBase(_sm);

            Assert.IsNotNull(_bpb);
            SimpleState _ss = _sm.EnterState <SimpleState>(new SimpleViewModel());
        }
        public void StateMachineContextCreation()
        {
            StateMachineContextMoc _sm = new StateMachineContextMoc();

            _sm.CheckConsistencyAfterCreation();
        }