summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/NumbersTestCase.java
blob: 238c28e717ce840bb12f3de0f0c561309ddd4779 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.semantics.test;

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

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

    public 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");
    }


}