aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/NumbersTestCase.java
blob: 998e7fef3c58ba1cb620c1d0bb31caceafd61bdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.semantics.test;

import org.junit.jupiter.api.Test;

/**
 * Tests numbers as conditions and productions
 *
 * @author bratseth
 */
public class NumbersTestCase extends RuleBaseAbstractTestCase {

    public NumbersTestCase() {
        super("numbers.sr");
    }

    @Test
    void testNumbers() {
        assertSemantics("elite", "1337");
        assertSemantics("1", "one");
        assertSemantics("AND bort ned", "opp");
        assertSemantics("AND kanoo knagg", "foo bar");
        assertSemantics("AND 3 three", "two 2");
        assertSemantics("AND 1 elite", "one 1337");
    }


}