aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/vespa/config/benchmark/Tester.java
blob: 8c1f42be1f72e656610ced49a4fbe736298fd0b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. 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();
}