File: System\Drawing\Design\ColorEditorTests.CustomColorDialogTests.cs
Web Access
Project: src\src\System.Windows.Forms.Design\tests\UnitTests\System.Windows.Forms.Design.Tests.csproj (System.Windows.Forms.Design.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable enable
 
namespace System.Drawing.Design.Tests;
 
public partial class ColorEditor_CustomColorDialogTests
{
    [WinFormsFact]
    public void CustomColorDialog_Ctor_Default()
    {
        Type? typeCustomColorDialog = typeof(ColorEditor).Assembly.GetTypes().SingleOrDefault(t => t.Name == "CustomColorDialog");
        Assert.NotNull(typeCustomColorDialog);
 
        using ColorDialog dialog = (ColorDialog)Activator.CreateInstance(typeCustomColorDialog!)!;
        Assert.NotNull(dialog);
    }
}