コード例 #1
0
        public void LogicalNotCommandTest()
        {
            SwitchVM      switchOne = new SwitchVM();
            LogicalBaseVM not       = LogicalBaseVM.CreateLogicalNot();

            ICommand selectSignalCommand = switchOne.SelectSignalCommand;

            selectSignalCommand.Execute(null);

            selectSignalCommand = not.SelectSignalCommand;
            selectSignalCommand.Execute(not.InputSignals[0]);

            Assert.AreEqual(true, not.OutputSignals[0].SignalValue);
        }
コード例 #2
0
        public LogicalNotControl()
        {
            InitializeComponent();

            DataContext = LogicalBaseVM.CreateLogicalNot();
        }