arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.sprite@331abd9a1e2f/Tests/Editor/SpritePackageTests.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

14 lines
339 B
C#

using NUnit.Framework;
namespace UnityEditor.U2D.Sprites.EditorTests
{
internal class SpritePackageEditorTests
{
[Test]
public void SpriteEditorWindow_IsLoadedFromDll()
{
Assert.That(typeof(SpriteEditorWindow).Assembly.FullName, Contains.Substring("Unity.2D.Sprite.Editor"));
}
}
}