aboutsummaryrefslogtreecommitdiffstats
path: root/cloud-tenant-cd/src/main/java/ai/vespa/hosted/cd/cloud/impl/VespaTestRuntimeProvider.java
blob: 96a26a0518674eab3ff73fbfc293d88defb96452 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.hosted.cd.cloud.impl;

import ai.vespa.hosted.cd.internal.TestRuntimeProvider;
import com.yahoo.component.AbstractComponent;

/**
 * @author mortent
 */
public class VespaTestRuntimeProvider extends AbstractComponent implements TestRuntimeProvider {

    @Override
    public void initialize(byte[] config) {
        VespaTestRuntime vespaTestRuntime = new VespaTestRuntime(config);
        updateReference(vespaTestRuntime);
    }

}