aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/RangeBucketPreDefFunctionTestCase.java
blob: 2b3d91392aea93c54788c3128b0b11a653102c9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. 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());
    }
}