Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 357087742c63692cf8b93ad5482fa2ef6ec0462c (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
/******************************************************************************
 *  Copyright (c) 2011 GitHub Inc.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  Contributors:
 *    Kevin Sawicki (GitHub Inc.) - initial API and implementation
 *****************************************************************************/
package org.eclipse.egit.github.core.tests;

import static org.junit.Assert.assertEquals;

import org.eclipse.egit.github.core.Label;
import org.eclipse.egit.github.core.util.LabelComparator;
import org.junit.Test;

/**
 * Unit tests of {@link LabelComparator}
 */
public class LabelComparatorTest {

	/**
	 * Compare labels
	 */
	@Test
	public void compareLabels() {
		LabelComparator cmp = new LabelComparator();
		Label l1 = new Label().setName("a");
		Label l2 = new Label().setName("b");
		assertEquals(-1, cmp.compare(l1, l2));
		assertEquals(0, cmp.compare(l1, l1));
		assertEquals(1, cmp.compare(l2, l1));
	}

}

Back to the top