aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/FixedWidthBucketFunctionTestCase.java
blob: 49db3c65a5ef6053c9c1b6674741cdc996fe5c12 (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 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());
    }
}