All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.opentelemetry.instrumentation.testing.junit.LibraryInstrumentationExtension Maven / Gradle / Ivy

There is a newer version: 2.12.0-alpha
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.instrumentation.testing.junit;

import io.opentelemetry.instrumentation.testing.LibraryTestRunner;

/**
 * JUnit 5 extension for writing library instrumentation tests.
 *
 * 

Example usage: * *

 *   class MyLibraryInstrumentationTest {
 *     {@literal @}RegisterExtension
 *     static final LibraryInstrumentationExtension instrTesting = LibraryInstrumentationExtension.create();
 *
 *     {@literal @}Test
 *     void test() {
 *       // test code ...
 *
 *       var spans = instrTesting.spans();
 *       // assertions on collected spans ...
 *     }
 *   }
 * 
*/ public final class LibraryInstrumentationExtension extends InstrumentationExtension { private LibraryInstrumentationExtension() { super(LibraryTestRunner.instance()); } public static LibraryInstrumentationExtension create() { return new LibraryInstrumentationExtension(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy