summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/NotTestCase.java
blob: 5d7db4e026039c49a83c6b9fbc021d34d55e992f (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 <a href="bratseth@yahoo-inc.com">Jon Bratseth</a>
 */
public class NotTestCase extends RuleBaseAbstractTestCase {

    public NotTestCase(String name) {
        super(name,"not.sr");
    }

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

}