summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/ComparisonsTestCase.java
blob: bc867d240bf67d71305f433eb3c789929e3af8a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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;

/**
 * @author bratseth
 */
public class ComparisonsTestCase extends RuleBaseAbstractTestCase {

    public ComparisonsTestCase(String name) {
        super(name,"comparisons.sr");
    }

    public void testLiteralEquals() {
        assertSemantics("a","a");
        assertSemantics("RANK a foo:a","a&ranking=category");
        assertSemantics("a","a&ranking=somethingelse");
        assertSemantics("a","a&otherparam=category");
    }

}