UnitTest1.cs 340 B

1234567891011121314151617
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. namespace PassTest
  4. {
  5. [TestClass]
  6. public class UnitTest1
  7. {
  8. [TestMethod]
  9. public void TestMethod1()
  10. {
  11. string password = "12345";
  12. bool expected = true;
  13. bool actual =
  14. }
  15. }
  16. }