Exemple #1
0
        public void SelectNotifyValue()
        {
            var select = new SelectElement();

            select.NotifyValue(new ElementEventValue
            {
                Value = "lala"
            });
            Assert.Equal("lala", select.Value);
        }