예제 #1
0
        public void PasswordWithoutNumerText()
        {
            bool   predict  = false;
            string Password = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.PasswordCheck(Password);

            Assert.AreEqual(predict, result);
        }
예제 #2
0
        public void MaxLenghtPasswordTest()
        {
            bool   predict  = false;
            string Password = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.PasswordCheck(Password);

            Assert.AreEqual(predict, result);
        }
예제 #3
0
        public void PasswordWithNumberText()
        {
            bool   predict = true;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.PasswordCheck(Login);

            Assert.AreEqual(predict, result);
        }
예제 #4
0
        public void WithoutSpecialSymbolPasswordTest()
        {
            bool   predict  = false;
            string Password = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.PasswordCheck(Password);

            Assert.AreEqual(predict, result);
        }
예제 #5
0
        public void MinLenghtPasswordTest()
        {
            bool   predict  = false;
            string Password = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.PasswordCheck(Password);

            Assert.AreEqual(predict, result);
        }
예제 #6
0
        public void LoginWithoutNumerText()
        {
            bool   predict = false;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.LoginCheck(Login);

            Assert.AreEqual(predict, result);
        }
예제 #7
0
        public void LoginWithLowerText()
        {
            bool   predict = true;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.LoginCheck(Login);

            Assert.AreEqual(predict, result);
        }
예제 #8
0
        public void MaxLenghtLoginTest()
        {
            bool   predict = false;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.LoginCheck(Login);

            Assert.AreEqual(predict, result);
        }
예제 #9
0
        public void MinLenghtLoginTest()
        {
            bool   predict = false;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.LoginCheck(Login);

            Assert.AreEqual(predict, result);
        }
예제 #10
0
        public void WithoutSpecialSymbolLoginTest()
        {
            bool   predict = false;
            string Login   = "******";
            AuthorizationDataCheck AuData = new AuthorizationDataCheck();
            bool result = AuData.LoginCheck(Login);

            Assert.AreEqual(predict, result);
        }