use of io.opencensus.metrics.data.AttachmentValue.AttachmentValueString in project instrumentation-java by census-instrumentation.
the class AttachmentValueTest method getValue.
@Test
public void getValue() {
AttachmentValueString attachmentValue = AttachmentValueString.create("value");
assertThat(attachmentValue.getValue()).isEqualTo("value");
}
Aggregations