mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
14 lines
204 B
C#
14 lines
204 B
C#
using NUnit.Framework;
|
|
|
|
namespace DebugCompiler
|
|
{
|
|
[TestFixture]
|
|
public class MyTest
|
|
{
|
|
[Test]
|
|
public void Test()
|
|
{
|
|
Assert.IsTrue(true);
|
|
}
|
|
}
|
|
}
|