aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/querytransform/TestUtils.java
blob: e2c2dc347ad74776045b3a9f4921ccce79f7e5d1 (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.search.querytransform;

import com.yahoo.prelude.query.Item;

import com.yahoo.search.Result;

public class TestUtils {

    public static Item getQueryTreeRoot(Result result) {
        return result.getQuery().getModel().getQueryTree().getRoot();
    }

}