Catel.Test.Windows.Input.InputGestureFacts.TheToStringMethod.CorrectlyReturnsStringWithoutModifiers C# (CSharp) Method

CorrectlyReturnsStringWithoutModifiers() private method

private CorrectlyReturnsStringWithoutModifiers ( ) : void
return void
            public void CorrectlyReturnsStringWithoutModifiers()
            {
                var inputGesture = new InputGesture(Key.A, ModifierKeys.None);

                Assert.AreEqual("A", inputGesture.ToString());
            }