public void NormaliseName_ReturnsExpectedValue(string inputValue, string expectedValue) { string actualValue = channelMatcher.NormaliseName(inputValue); Assert.AreEqual(expectedValue, actualValue); }
public void NormaliseName_WithCountry_ReturnsExpectedValue(string name, string country, string expectedNormalisedName) { string actualNormalisedName = channelMatcher.NormaliseName(name, country); Assert.That(actualNormalisedName, Is.EqualTo(expectedNormalisedName)); }