16 lines
449 B
Groovy
16 lines
449 B
Groovy
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import io.opentelemetry.instrumentation.rxjava3.AbstractRxJava3SubscriptionTest
|
|
import io.opentelemetry.instrumentation.rxjava3.TracingAssembly
|
|
import io.opentelemetry.instrumentation.test.LibraryTestTrait
|
|
|
|
class RxJava3SubscriptionTest extends AbstractRxJava3SubscriptionTest implements LibraryTestTrait {
|
|
|
|
def setupSpec() {
|
|
TracingAssembly.enable()
|
|
}
|
|
}
|