ConsoleCommandManagerTests ExecuteUnknownCommand Method Delta Engine Documentation

Namespace: DeltaEngine.Platforms.Tests
Assembly: DeltaEngine.Platforms.Tests (in DeltaEngine.Platforms.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ExecuteUnknownCommand()
Examples

[Test]
public void ExecuteUnknownCommand()
{
    string result = consoleCommands.ExecuteCommand("NotRegistered");
    Assert.AreEqual("Error: Unknown console command 'NotRegistered'", result);
}
See Also