aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java
blob: 6433d0d491ab0f2f05f04cb6435e697a02185d08 (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
24
25
26
27
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.process;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author Simon Thoresen Hult
 */
public class StemModeTestCase {

    @Test
    @SuppressWarnings("deprecation")
    public void requireThatValueOfWorks() {
        for (StemMode mode : StemMode.values()) {
            assertEquals(mode, StemMode.valueOf(mode.getValue()));
        }
    }

    @Test
    @SuppressWarnings("deprecation")
    public void requireThatValueOfUnknownIsNone() {
        assertEquals(StemMode.NONE, StemMode.valueOf(-1));
    }

}