You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
339 B
14 lines
339 B
2 years ago
|
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"));
|
||
|
}
|
||
|
}
|
||
|
}
|