UnitTest1.cs 247 B

123456789101112131415161718
  1. using NUnit.Framework;
  2. namespace Tests
  3. {
  4. public class Tests
  5. {
  6. [SetUp]
  7. public void Setup()
  8. {
  9. }
  10. [Test]
  11. public void Test1()
  12. {
  13. Assert.AreEqual(true, true);
  14. }
  15. }
  16. }