1234567891011121314151617 |
- using System;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using metodichka;
- namespace UnitTestProject2
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- var page = new Window1();
- Assert.IsTrue(page.Auth("test", "test"));
- }
- }
- }
|