예제 #1
0
        public void TestMethod2()
        {
            string currentPassword = "******";
            var passwordIncrementor = new PasswordIncrementor();

            currentPassword = passwordIncrementor.NextValidPassword(currentPassword);
            Assert.AreEqual("ghjaabcc", currentPassword);
        }
예제 #2
0
        public void TestMethod1()
        {
            string currentPassword = "******";
            var passwordIncrementor = new PasswordIncrementor();

            currentPassword = passwordIncrementor.NextValidPassword(currentPassword);
            Assert.AreEqual("abcdffaa", currentPassword);
        }
예제 #3
0
        public void TestMethod3()
        {
            string currentPassword = "******";
            var passwordIncrementor = new PasswordIncrementor();

            currentPassword = passwordIncrementor.NextValidPassword(currentPassword);

            Assert.AreEqual("hepxxyzz", currentPassword);
        }