aboutsummaryrefslogtreecommitdiffstats
path: root/application/src/test/java/com/yahoo/application/MockResultSearcher.java
blob: 75a0d964e145cd2ab7fff668925d98418b01a602 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application;

import com.yahoo.search.Query;
import com.yahoo.search.Result;
import com.yahoo.search.Searcher;
import com.yahoo.search.result.Hit;
import com.yahoo.search.searchchain.Execution;

/**
 * @author bratseth
 */
public class MockResultSearcher extends Searcher {

    @Override
    public Result search(Query query, Execution execution) {
        Result result = new Result(query);
        result.hits().add(new Hit("hasQuery", query));
        return result;
    }

}