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

io.opentelemetry.instrumentation.testing.junit.AgentInstrumentationExtension 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.AgentTestRunner;

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

Example usage: * *

 *   class MyAgentInstrumentationTest {
 *     {@literal @}RegisterExtension
 *     static final AgentInstrumentationExtension instrTesting = AgentInstrumentationExtension.create();
 *
 *     {@literal @}Test
 *     void test() {
 *       // test code ...
 *
 *       var spans = instrTesting.spans();
 *       // assertions on collected spans ...
 *     }
 *   }
 * 
* *

Note that {@link AgentInstrumentationExtension} will not work by itself, you have to run the * tests process with the {@code agent-for-testing} javaagent. */ public final class AgentInstrumentationExtension extends InstrumentationExtension { private AgentInstrumentationExtension() { super(AgentTestRunner.instance()); } public static AgentInstrumentationExtension create() { return new AgentInstrumentationExtension(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy