Execute() public method

public Execute ( ) : void
return void
Esempio n. 1
0
        public void TestSimpleCommand()
        {
            var command = new SimpleCommand(() => Tests.TestString = "I worked!");

            command.Execute(this);
            Assert.AreEqual("I worked!", TestString);
        }