Searched refs:headersEightBytes (Results 1 – 1 of 1) sorted by relevance
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/propagation/ |
D | B3FormatTest.java | 140 Map<String, String> headersEightBytes = new HashMap<String, String>(); in parseEightBytesTraceId() local 141 headersEightBytes.put(X_B3_TRACE_ID, TRACE_ID_BASE16_EIGHT_BYTES); in parseEightBytesTraceId() 142 headersEightBytes.put(X_B3_SPAN_ID, SPAN_ID_BASE16); in parseEightBytesTraceId() 143 headersEightBytes.put(X_B3_SAMPLED, "1"); in parseEightBytesTraceId() 144 assertThat(b3Format.extract(headersEightBytes, getter)) in parseEightBytesTraceId() 150 Map<String, String> headersEightBytes = new HashMap<String, String>(); in parseEightBytesTraceId_NotSampledSpanContext() local 151 headersEightBytes.put(X_B3_TRACE_ID, TRACE_ID_BASE16_EIGHT_BYTES); in parseEightBytesTraceId_NotSampledSpanContext() 152 headersEightBytes.put(X_B3_SPAN_ID, SPAN_ID_BASE16); in parseEightBytesTraceId_NotSampledSpanContext() 153 assertThat(b3Format.extract(headersEightBytes, getter)) in parseEightBytesTraceId_NotSampledSpanContext()
|