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

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

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

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