main.misk.testing.MockTracingBackendModule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of misk-testing Show documentation
Show all versions of misk-testing Show documentation
Open source application container in Kotlin
package misk.testing
import io.opentracing.Tracer
import io.opentracing.mock.MockTracer
import misk.inject.KAbstractModule
class MockTracingBackendModule : KAbstractModule() {
override fun configure() {
// TODO(keefer): Update to use wisp-tracing's ConcurrentMockTracer instead.
bind().to()
bind().to()
}
}