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

io.opentelemetry.instrumentation.test.LibraryTestTrait.groovy Maven / Gradle / Ivy

/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.instrumentation.test

import io.opentelemetry.instrumentation.testing.InstrumentationTestRunner
import io.opentelemetry.instrumentation.testing.LibraryTestRunner

/**
 * A trait which initializes instrumentation library tests, including a test span exporter. All
 * library tests should implement this trait.
 */
trait LibraryTestTrait {

  static InstrumentationTestRunner instrumentationTestRunner = LibraryTestRunner.instance()

  static {
    instrumentationTestRunner = LibraryTestRunner.instance()
  }

  InstrumentationTestRunner testRunner() {
    instrumentationTestRunner
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy