UnitTest1.cs 369 B

1234567891011121314151617
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using System.Net;
  4. namespace UnitTestTea
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestTOREGISTRATION()
  11. {
  12. bool c = new Authorization();
  13. Assert.IsTrue(Authorization().(new checkWorker("even52", "1"));
  14. }
  15. }
  16. }