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#

C# Updating GUI from different thread