summaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java')
-rw-r--r--tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java
new file mode 100644
index 00000000000..e97fa5faf85
--- /dev/null
+++ b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java
@@ -0,0 +1,29 @@
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package ai.vespa.hosted.cd.internal;
+
+import ai.vespa.hosted.cd.TestRuntime;
+import com.yahoo.component.AbstractComponent;
+
+import java.util.concurrent.atomic.AtomicReference;
+
+/**
+ * @author mortent
+ */
+public class TestRuntimeProvider extends AbstractComponent {
+
+ private static final AtomicReference<TestRuntime> testRuntime = new AtomicReference<>();
+
+ public TestRuntimeProvider(TestRuntime testRuntime) {
+ TestRuntimeProvider.testRuntime.set(testRuntime);
+ }
+
+ public static TestRuntime getTestRuntime() {
+ return testRuntime.get();
+ }
+
+ @Override
+ public void deconstruct() {
+ super.deconstruct();
+ testRuntime.set(null);
+ }
+}