aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/derived/NGramTestCase.java
blob: 4481445858a51cad11252483fb37c6349bd4435d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yahoo.schema.derived;

import com.yahoo.schema.parser.ParseException;
import org.junit.jupiter.api.Test;

import java.io.IOException;

public class NGramTestCase extends AbstractExportingTestCase {

    @Test
    void testNGram() throws IOException, ParseException {
        assertCorrectDeriving("ngram");
    }

}