コード例 #1
0
ファイル: AttributesTesting.cs プロジェクト: rChavz/lara
        public void NotifyValueSkipsSameValue()
        {
            var input = new InputElement
            {
                Value = "hello"
            };

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