File: System\Windows\Forms\TabControlCancelEventArgsTests.cs
Web Access
Project: src\src\System.Windows.Forms\tests\UnitTests\System.Windows.Forms.Tests.csproj (System.Windows.Forms.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms.Tests;
 
public class TabControlCancelEventArgsTests
{
    public static IEnumerable<object[]> Ctor_TabPage_Int_Bool_TabControlAction_TestData()
    {
        yield return new object[] { null, -2, false, TabControlAction.Selecting - 1 };
        yield return new object[] { new TabPage(), -1, true, TabControlAction.Selecting };
        yield return new object[] { new TabPage(), 0, false, TabControlAction.Selected };
        yield return new object[] { new TabPage(), 1, true, TabControlAction.Selected };
    }
 
    [WinFormsTheory]
    [MemberData(nameof(Ctor_TabPage_Int_Bool_TabControlAction_TestData))]
    public void Ctor_TabPage_Int_Bool_TabControlAction(TabPage tabPage, int tabPageIndex, bool cancel, TabControlAction action)
    {
        TabControlCancelEventArgs e = new(tabPage, tabPageIndex, cancel, action);
        Assert.Equal(tabPage, e.TabPage);
        Assert.Equal(tabPageIndex, e.TabPageIndex);
        Assert.Equal(cancel, e.Cancel);
        Assert.Equal(action, e.Action);
    }
}