Skip to content

Latest commit

 

History

History
87 lines (57 loc) · 2.91 KB

readme.md

File metadata and controls

87 lines (57 loc) · 2.91 KB

Verify.WinForms

Discussions Build status NuGet Status

Extends Verify to allow verification of WinForms UIs.

See Milestones for release notes.

NuGet package

https://nuget.org/packages/Verify.WinForms/

Usage

[ModuleInitializer]
public static void Init() =>
    VerifyWinForms.Initialize();

snippet source | anchor

Form

A visual element (Form/Control etc) can be verified as follows:

[Test]
public Task FormUsage() =>
    Verify(new MyForm());

snippet source | anchor

With the state of the element being rendered as a verified file:

TheTests.FormUsage.Net.verified.png:

ContextMenuStrip

A ContextMenuStrip can be verified as follows:

[Test]
public Task ContextMenuStrip()
{
    var menu = new ContextMenuStrip();
    var items = menu.Items;

    items.Add(new ToolStripMenuItem("About"));
    items.Add(new ToolStripMenuItem("Exit"));
    return Verify(menu);
}

snippet source | anchor

With the state of the element being rendered as a verified file:

TheTests.FormUsage.Net.verified.png:

OS specific rendering

The rendering of Form elements can very slightly between different OS versions. This can make verification on different machines (eg CI) problematic. There are several approaches to mitigate this:

Icon

Gem designed by Adnen Kadri from The Noun Project.