Nexus/Library/PackageCache/com.unity.sysroot.base@5dc361c24ca9/Tests/Editor/SysrootBaseTest.cs

22 lines
597 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using NUnit.Framework;
using UnityEditor.Il2Cpp;
/// <summary>
/// EditMode tests for the base sysroot package scaffold.
/// </summary>
/// <remarks>
/// Sanity-checks that the base <see cref="SysrootPackage"/> type can be instantiated
/// in the current compile configuration.
/// </remarks>
/// <seealso cref="SysrootPackage"/>
class SysrootBaseTest
{
/// <summary>
/// Verifies that <see cref="SysrootPackage"/> can be constructed without throwing.
/// </summary>
[Test]
public void TestPackageInitialization()
{
Assert.NotNull(new SysrootPackage());
}
}