public void IsCorrectFormat_ShouldReturnTrueIfTxtOrCsv(string path, bool expected)
        {
            var actual = FileValidate.IsCorrectFormat(path);

            Assert.AreEqual(expected, actual);
        }