File: System\ComponentModel\Design\Serialization\StatementContextTests.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. namespace System.ComponentModel.Design.Serialization.Tests; public class StatementContextTests { [Fact] public void StatementContext_Ctor_Default() { StatementContext context = new(); Assert.Empty(context.StatementCollection); Assert.Same(context.StatementCollection, context.StatementCollection); } } |