aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java')
-rw-r--r--linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java b/linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java
deleted file mode 100644
index 6433d0d491a..00000000000
--- a/linguistics/src/test/java/com/yahoo/language/process/StemModeTestCase.java
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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));
- }
-
-}