public void ShouldNotMatchDifferentMediaType() { var mediaType = new MediaType("text/html"); Assert.That(mediaType.Matches("text/xml"), Is.False); }
public void ShouldMatchWildcardSubTypeCaseInsensitive() { var mediaType = new MediaType("text/html"); Assert.That(mediaType.Matches("TEXT/*")); }
public void ShouldMatchExact() { var mediaType = new MediaType("text/html"); Assert.That(mediaType.Matches("text/html"), Is.True); }
public void ShouldMatchWildcardedSubType() { var mediaType = new MediaType("text/html"); Assert.That(mediaType.Matches("text/*")); }
public void MatchingIsCaseInsensitive() { var mediaType = new MediaType("text/html"); Assert.That(mediaType.Matches("TEXT/HTML")); }