File: System\Windows\Controls\ButtonTests.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\tests\UnitTests\PresentationFramework.Fluent.Tests\PresentationFramework.Fluent.Tests.csproj (PresentationFramework.Fluent.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.Controls;
 
public class ButtonTests
{
    [WpfFact]
    public void Button_Create()
    {
        Button _ = new();
    }
}