Ejemplo n.º 1
0
        public void GetFileExtention_returns_correct_Extention(string path, string expectedExtention)
        {
            var explorer = new FileExplorer();

            var extention = explorer.GetFileExtention(path);

            Assert.Equal(expectedExtention, extention);
        }