aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/FixedWidthBucketFunctionTestCase.java
blob: 2ffff7ff1cb2bf025c2082fd946dac510aab0292 (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 FixedWidthBucketFunctionTestCase {

    @Test
    public void requireThatAccessorsWork() {
        ExpressionNode arg = new AttributeNode("foo");
        NumericResultNode width = new IntegerResultNode(69L);
        FixedWidthBucketFunctionNode node = new FixedWidthBucketFunctionNode(width, arg);
        assertSame(arg, node.getArg());
        assertSame(width, node.getWidth());
    }
}