Open Windows Form from nunit test

[Test]
public void Test()
{
    var form = new Form1();
    Application.Run(form);
}

Comments

Popular posts from this blog

Parse XML to dynamic object in C#

Parse XML to object model in C# using XSD utility