22 lines
347 B
C#
Raw Normal View History

2020-02-21 16:17:47 -05:00
using NUnit.Framework;
namespace RecrownedGTK.Tests
{
[TestFixture]
public class TextureDataTest
{
[SetUp]
public void Setup()
{
}
[TearDown]
public void Cleanup() {
}
[Test]
public void TestDefaultShader()
{
Assert.Pass();
}
}
}