aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/FixedWidthBucketFunctionTestCase.java
blob: 4836c9c05d213f836b91bfa75b22fc2c717b2254 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 Yahoo Inc. 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 <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
 */
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());
    }
}