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

/**
 * tersts the ellipsis rule base
 *
 * @author bratseth
 */
public class Ellipsis2TestCase extends RuleBaseAbstractTestCase {

    public Ellipsis2TestCase() {
        super("ellipsis2.sr");
    }

    @Test
    void testUnreferencedEllipsis() {
        assertSemantics("AND a b c someindex:\"a b c\"", "a b c");
    }

}