Exemplo n.º 1
0
        public void GetExecutableInfo_WhenAnyValues_ThenCanExecute()
        {
            //Arrange
            var subtraction = new Subtraction();

            //Act
            var executableInfo = subtraction.GetExecutableInfo(10, 20);

            //Assert
            Assert.That(executableInfo.CanBeExecuted, Is.True);
        }