Exemplo n.º 1
0
        public void GenerateFileNameSequenceTest(string filename, int counter, string expected)
        {
            FileInformation fileInfo = new FileInformation(filename);

            Logic.FileNameGenerator _sut = new Logic.FileNameGenerator(new FileOperations());
            string result = _sut.GenerateFileNameSequence(fileInfo, counter);

            Assert.Equal(expected, result);
        }