Unit-testing data binding in System.Windows.Forms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:59:07Z http://stackoverflow.com/feeds/question/459779 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/459779/unit-testing-data-binding-in-system-windows-forms 0 Unit-testing data binding in System.Windows.Forms Matthias Hryniszak 2009-01-20T00:46:09Z 2009-01-20T03:23:24Z <p>I'm facing a problem while unit testing my forms. </p> <p>The problem is that data bindings are simply not working when the form is not visible.</p> <p>Here's some example code:</p> <pre><code>Data = new Data(); EdtText.DataBindings.Add( new Binding("Text", Data, "Text", false, DataSourceUpdateMode.OnPropertyChanged)); </code></pre> <p>and later on:</p> <pre><code>Form2 f = new Form2(); f.Data.Text = "Test 1"; f.EdtText.Text = "Test 2"; f.Data.Text = "Test 3"; </code></pre> <p>At the end the values for components are f.EdtText.Text = "Test 2" and f.Data.Text = "Test 3" but the expected values should be both "Test 3".</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/459779/unit-testing-data-binding-in-system-windows-forms/460023#460023 2 Answer by Bob Nadler for Unit-testing data binding in System.Windows.Forms Bob Nadler 2009-01-20T03:23:24Z 2009-01-20T03:23:24Z <p>I think you answered your own question -- in order for the property change event (<code>TextChanged</code>) to occur the control has to be displayed. Your unit test can just do something like this:</p> <pre><code>Form2 f = new Form2(); f.Show(); Thread.Sleep(2000); // give the Form time to open f.Data.Text = "Test 1"; Assert.AreEqual("Test 1", f.EditText.Text); f.Close(); </code></pre> <p>Instead of exposing the Form components, you'll probably want to use <a href="http://nunitforms.sourceforge.net/" rel="nofollow">NUnitForms</a> to get the Form controls:</p> <pre><code>TextBoxTester tb = new TextBoxTester("EditText1"); Assert.AreEqual("Test 1", tb["Text"]); </code></pre>