aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/process/StemListTestCase.java
blob: 6d84f3dae5128da60e53dfb6b21c516d3caf623d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.process;

import static org.junit.Assert.*;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

/**
 * Functional testing of StemList.
 *
 * @author Steinar Knutsen
 */
public class StemListTestCase {

    private StemList stems;

    @Before
    public void setUp() throws Exception {
        stems = new StemList();
    }

    @After
    public void tearDown() throws Exception {
        stems = null;
    }

    @Test
    public void testSize() {
        assertEquals(0, stems.size());
        stems.add("a");
        stems.add("b");
        stems.add("a");
        assertEquals(2, stems.size());
    }

    @Test
    public void testSet() {
        stems.add("a");
        stems.add("b");
        stems.add("c");
        stems.add("d");
        assertEquals("a", stems.set(2, "a"));
        assertEquals("c", stems.get(2));
        assertEquals("c", stems.set(2, "z"));
        assertEquals("z", stems.get(2));
    }

    @Test
    public void testAdd() {
        stems.add("a");
        stems.add("b");
        stems.add("c");
        stems.add("d");
        assertEquals(4, stems.size());
        stems.add("a");
        assertEquals(4, stems.size());
        stems.add("z");
        assertEquals(5, stems.size());
    }

    @Test
    public void testremove() {
        stems.add("a");
        stems.add("b");
        stems.add("c");
        stems.add("d");
        assertEquals("c", stems.remove(2));
        assertEquals(3, stems.size());
    }

}