Exemplo n.º 1
0
        public void ChangeCheck_Equal_FalseReturned()
        {
            string[] oldMas = new string[3] {
                "1", "2", "3"
            };
            string[] newMas = new string[3] {
                "1", "2", "3"
            };

            CorrectInputCheck inputCheck = GetInputCheck();
            bool actual = inputCheck.ChangeCheck(oldMas, newMas);

            Assert.IsFalse(actual);
        }