UnitTest1.cs 340 B

1234567891011121314151617
  1. using System;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using metodichka;
  4. namespace UnitTestProject2
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestMethod1()
  11. {
  12. var page = new Window1();
  13. Assert.IsTrue(page.Auth("test", "test"));
  14. }
  15. }
  16. }