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

}