public void IsShellCommandTest() { bool isCommand = ShellCommand.IsShellCommand(typeof(TestCommand)); Assert.IsTrue(isCommand); isCommand = ShellCommand.IsShellCommand(typeof(NotACommand)); Assert.IsFalse(isCommand); }