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

CorrectlyReturnsStringWithSingleModifier() private method

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

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