aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/collections/IntArrayComparatorTestCase.java
blob: 556836b0fbfcdcf2994d5a25a76720174841503a (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.collections;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 */
public class IntArrayComparatorTestCase {
    @Test
    public void arrayLength() {
        int[] shortArr = new int[]{1, 2};
        int[] longArr = new int[]{0, 3, 3, 3, 3, 3};

        assertEquals(-1, IntArrayComparator.compare(shortArr, longArr));
    }

    @Test
    public void compareArrays() {
        int[] one = new int[]{1, 2, 3, 3, 3, 3};
        int[] two = new int[]{0, 3, 3, 3, 3, 3};

        assertEquals(1, IntArrayComparator.compare(one, two));
        assertEquals(-1, IntArrayComparator.compare(two, one));
    }

    @Test
    public void compareEqualArrays() {
        int[] one = new int[]{1, 2, 3, 3, 3, 3, 9};
        int[] two = new int[]{1, 2, 3, 3, 3, 3, 9};

        assertEquals(0, IntArrayComparator.compare(one, two));
        assertEquals(0, IntArrayComparator.compare(two, one));
    }
}