aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/vespa/config/benchmark/Tester.java
blob: fe491316dcc0c716af52296981583d4e590335dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.benchmark;

import java.util.Map;

/**
 * Tester interface for loadable test runners.
 */
public interface Tester {
    void subscribe();
    boolean fetch();
    boolean verify(Map<String, Map<String, String>> expected, long generation);
    void close();
}