File: System\Private\Windows\Core\PrivateCoreTests.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\UnitTests\System.Windows.Forms.Primitives.Tests.csproj (System.Windows.Forms.Primitives.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.Private.Windows;
 
public class PrivateCoreTests
{
    [Fact]
    public void PrivateCore_HasNoPublicTypes()
    {
        // There should be no public types in this assembly.
        typeof(BufferScope<>).Assembly.GetExportedTypes().Should().BeEmpty();
    }
}