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

import org.junit.Test;

import static org.junit.Assert.assertSame;

/**
 * @author Simon Thoresen Hult
 */
public class RangeBucketPreDefFunctionTestCase {

    @Test
    public void requireThatAccessorsWork() {
        ResultNodeVector bucketList = new IntegerResultNodeVector();
        ExpressionNode arg = new AttributeNode("foo");
        RangeBucketPreDefFunctionNode node = new RangeBucketPreDefFunctionNode(bucketList, arg);
        assertSame(bucketList, node.getBucketList());
        assertSame(arg, node.getArg());
    }
}