Ejemplo n.º 1
0
        public void RemoveArtefacts_WhenThereIsHyphens_RemoveThem(string testString, string result)
        {
            var test = StringClass.RemoveArtefacts(testString);

            Assert.Equal(result, test);
        }
Ejemplo n.º 2
0
        public void RemoveArtefacts_WhenCaseIsIncorrect_MakeLowerCase(string testString, string result)
        {
            var test = StringClass.RemoveArtefacts(testString);

            Assert.Equal(result, test);
        }