Skip to content

Commit

Permalink
Add unit tests for SplitterDesigner (dotnet#12359)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nora-Zhou01 authored Oct 21, 2024
1 parent 89e6bb9 commit e8a65f9
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// 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.Windows.Forms.Design.Tests;

public class SplitterDesignerTests
{
[Fact]
public void Constructor_SetsAutoResizeHandlesToTrue()
{
using SplitterDesigner designer = new();

designer.AutoResizeHandles.Should().BeTrue();
}
}

0 comments on commit e8a65f9

Please sign in to comment.