Catel.Test.Windows.Input.InputGestureFacts.TheToStringMethod.CorrectlyReturnsStringWithSingleModifier C# (CSharp) Метод

CorrectlyReturnsStringWithSingleModifier() приватный Метод

private CorrectlyReturnsStringWithSingleModifier ( ) : void
Результат void
            public void CorrectlyReturnsStringWithSingleModifier()
            {
                var inputGesture = new InputGesture(Key.A, ModifierKeys.Control);

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