recrownedgtk/RecrownedGTK.Tests/Graphics/Render/TextureDataTest.cs
Harrison e7b506f6a3 Changed unit testing to non-graphical tests.
Currently, just reset things to a template file. Still learning what's easy to test and not.
2020-02-21 02:06:32 -05:00

21 lines
324 B
C#

namespace RecrownedGTK.Tests
{
[TestFixture]
public class TextureDataTest
{
[SetUp]
public void Setup()
{
}
[TearDown]
public void Cleanup() {
}
[Test]
public void TestDefaultShader()
{
Assert.Pass();
}
}
}