I\'ve created a test within a Unit Test Project, in which I want pop up a Form using its ShowDialog()
function:
[TestMethod]
public void Te
As much as I try to avoid building unit tests that use System.Windows.Forms
, I ran into an odd case where I needed this as well and solved it by handling the Load
event and explicitly setting Visible = true
. This forces the form to visible when ShowDialog is called from the test method.
private void form1_Load(object sender, EventArgs e)
{
// To support calling ShowDialog from test method...
this.Visible = true;
...
}
Alternatively, just observe the form instance from your test method and do the same there instead. At least this mitigates the issue further in that it keeps the hack out of your form's code.
var frm = new Form1();
frm.Load += (sender, e) => (sender as Form1).Visible = true;
frm.ShowDialog();