public void Given_Type_Should_IsTypeByteArray_ReturnValue()
        {
            var result = ContentTypeValidator.IsTypeByteArray(typeof(int));

            result.Should().BeFalse();

            result = ContentTypeValidator.IsTypeByteArray(typeof(byte[]));
            result.Should().BeTrue();
        }