Exemplo n.º 1
0
        public void CheckExist_empty_string_false_returned()
        {
            //Arrange
            FileChecker fileChecker = new FileChecker();
            string      accept      = "";
            bool        expected    = false;

            //Act
            bool actual = fileChecker.CheckExists(accept);

            //Result
            Assert.AreEqual(expected, actual);
        }