예제 #1
0
        public void NotifyValueSkipsSameValue()
        {
            var input = new InputElement
            {
                Value = "hello"
            };

            input.NotifyValue("hello");
            Assert.Equal("hello", input.Value);
        }