We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416f728 commit 83b0eaaCopy full SHA for 83b0eaa
dd-java-agent/agent-bootstrap/src/test/groovy/datadog/trace/bootstrap/InitializationTelemetryTest.groovy
@@ -0,0 +1,16 @@
1
+package datadog.trace.bootstrap
2
+
3
+import datadog.trace.test.util.DDSpecification
4
5
+class InitializationTelemetryTest extends DDSpecification {
6
+ def "telemetry wrapper - null case"() {
7
+ expect:
8
+ InitializationTelemetry.proxy(null) == InitializationTelemetry.noOpInstance()
9
+ }
10
11
+ def "telemetry wrapper - wrap bootstrap"() {
12
+ // TODO: Figure out how to test the wrapper fully
13
14
+ InitializationTelemetry.proxy(new Object()) != InitializationTelemetry.noOpInstance()
15
16
+}
0 commit comments