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.
15 lines
385 B
15 lines
385 B
using NUnit.Framework;
|
|
using UnityEditor.Tilemaps;
|
|
|
|
namespace UnityEditor.U2D.Tilemap.Editor.PackageTests
|
|
{
|
|
internal class TilemapPackageEditorTests
|
|
{
|
|
[Test]
|
|
public void GridPaintPaletteWindow_IsLoadedFromDll()
|
|
{
|
|
Assert.That(typeof(GridPaintPaletteWindow).Assembly.FullName, Contains.Substring("Unity.2D.Tilemap.Editor"));
|
|
}
|
|
}
|
|
}
|