Esempio n. 1
0
        public void TestMethod2()
        {
            string currentPassword = "******";
            var passwordIncrementor = new PasswordIncrementor();

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

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

            currentPassword = passwordIncrementor.NextValidPassword(currentPassword);

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