Esempio n. 1
0
        public void IsShellCommandTest()
        {
            bool isCommand = ShellCommand.IsShellCommand(typeof(TestCommand));

            Assert.IsTrue(isCommand);

            isCommand = ShellCommand.IsShellCommand(typeof(NotACommand));
            Assert.IsFalse(isCommand);
        }