Skip to content

VerifyTests/Verify.WinForms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Extends Verify to allow verification of WinForms UIs.

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project

 

Contributors 4

  •  
  •  
  •  
  •  

Languages