1234567891011121314151617 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- namespace PassTest
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- string password = "12345";
- bool expected = true;
- bool actual =
- }
- }
- }
|