Home
last modified time | relevance | path

Searched refs:FIRST_BYTE (Results 1 – 1 of 1) sorted by relevance

/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DTraceOptionsTest.java29 private static final byte FIRST_BYTE = (byte) 0xff; field in TraceOptionsTest
40 assertThat(TraceOptions.fromByte(FIRST_BYTE).getOptions()).isEqualTo(-1); in getOptions()
53 assertThat(TraceOptions.fromByte(FIRST_BYTE).getByte()).isEqualTo(FIRST_BYTE); in toFromByte()
61 assertThat(TraceOptions.fromBytes(new byte[] {FIRST_BYTE}).getByte()).isEqualTo(FIRST_BYTE); in deprecated_fromBytes()
62 assertThat(TraceOptions.fromBytes(new byte[] {1, FIRST_BYTE}, 1).getByte()) in deprecated_fromBytes()
63 .isEqualTo(FIRST_BYTE); in deprecated_fromBytes()
69 assertThat(TraceOptions.fromByte(FIRST_BYTE).getBytes()).isEqualTo(new byte[] {FIRST_BYTE}); in deprecated_getBytes()
88 tester.addEqualityGroup(TraceOptions.fromByte(FIRST_BYTE)); in traceOptions_EqualsAndHashCode()