예제 #1
0
        public void Given_a_web_element_has_an_attribute_data_value()
        {
            _componentFactory = SubstituteFor <IComponentFactory>();
            _textBox          = Substitute.For <TextBox>();

            _componentFactory
            .HtmlControlFor <TextBox>(_textBoxPropertySelector)
            .Returns(_textBox);
        }
        public void Given_a_web_element_has_an_attribute_data_value()
        {
            _componentFactory = SubstituteFor<IComponentFactory>();
            _textBox = Substitute.For<TextBox>();

            _componentFactory
                .HtmlControlFor<TextBox>(_textBoxPropertySelector)
                .Returns(_textBox);
        }