goog.module('protobuf.binary.packedUint32TestPairs'); const BufferDecoder = goog.require('protobuf.binary.BufferDecoder'); const {createBufferDecoder} = goog.require('protobuf.binary.bufferDecoderHelper'); /** * An array of Pairs of packed uint32 values and their bit representation. * This is used to test encoding and decoding from/to the protobuf wire format. * @return {!Array<{name: string, uint32Values: !Array, * bufferDecoder: !BufferDecoder, skip_writer: ?boolean}>} */ function getPackedUint32Pairs() { return [ { name: 'empty value', uint32Values: [], bufferDecoder: createBufferDecoder(0x00), skip_writer: true, }, { name: 'single value', uint32Values: [1], bufferDecoder: createBufferDecoder(0x01, 0x01), }, { name: 'multiple values', uint32Values: [1, 0], bufferDecoder: createBufferDecoder(0x02, 0x01, 0x00), }, ]; } exports = {getPackedUint32Pairs};