UnitTest1.cs 216 B

12345678910111213141516
  1. namespace TestProject1
  2. {
  3. public class Tests
  4. {
  5. [SetUp]
  6. public void Setup()
  7. {
  8. }
  9. [Test]
  10. public void Test1()
  11. {
  12. Assert.Pass();
  13. }
  14. }
  15. }