aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/UrlTestCase.java
blob: da96f5f91f6bd2b7ce5016a912fa138f69c3348f (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
// 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 working with url indexes
 *
 * @author bratseth
 */
public class UrlTestCase extends RuleBaseAbstractTestCase {

    public UrlTestCase() {
        super("url.sr");
    }

    @Test
    void testFromDefaultToUrlIndex() {
        assertSemantics("fromurl:\"youtube com\"", "youtube.com");
    }


}