public void NormaliseName_ReturnsExpectedValue(string inputValue, string expectedValue)
        {
            string actualValue = channelMatcher.NormaliseName(inputValue);

            Assert.AreEqual(expectedValue, actualValue);
        }
Beispiel #2
0
        public void NormaliseName_WithCountry_ReturnsExpectedValue(string name, string country, string expectedNormalisedName)
        {
            string actualNormalisedName = channelMatcher.NormaliseName(name, country);

            Assert.That(actualNormalisedName, Is.EqualTo(expectedNormalisedName));
        }