Package info.archinnov.achilles.internal.metadata.codec

Examples of info.archinnov.achilles.internal.metadata.codec.ByteCodec.encode()


        //Given
        ByteBuffer byteBuffer = ByteBuffer.wrap(new byte[]{5});
        ByteCodec codec = new ByteCodec();

        //When
        ByteBuffer encoded = codec.encode((byte) 3);
        Byte decoded = codec.decode(byteBuffer);

        //Then
        assertThat(encoded.array()[0]).isEqualTo((byte)3);
        assertThat(decoded).isEqualTo(new Byte((byte)5));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.