public void ShouldCreateFileName(string partA, string partB, string partC, string expected)
 {
     string[] words = new string[] { partA, partB, partC };
     TagHelper.CreateFileNameFromTags(words).Should().Be(expected);
 }