21 lines
636 B
Java
21 lines
636 B
Java
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import io.opentelemetry.cassandra.v4.common.AbstractCassandraTest;
|
|
import io.opentelemetry.instrumentation.testing.junit.AgentInstrumentationExtension;
|
|
import io.opentelemetry.instrumentation.testing.junit.InstrumentationExtension;
|
|
import org.junit.jupiter.api.extension.RegisterExtension;
|
|
|
|
public class CassandraTest extends AbstractCassandraTest {
|
|
|
|
@RegisterExtension
|
|
static final InstrumentationExtension testing = AgentInstrumentationExtension.create();
|
|
|
|
@Override
|
|
protected InstrumentationExtension testing() {
|
|
return testing;
|
|
}
|
|
}
|