public void Given_Type_Should_IsTypeString_ReturnValue() { var result = ContentTypeValidator.IsTypeString(typeof(int)); result.Should().BeFalse(); result = ContentTypeValidator.IsTypeString(typeof(string)); result.Should().BeTrue(); }