File: Int2IntArrayMapTest.java

package info (click to toggle)
libfastutil-java 8.5.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,036 kB
  • sloc: java: 19,208; sh: 1,188; makefile: 469; xml: 344
file content (55 lines) | stat: -rw-r--r-- 1,641 bytes parent folder | download
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
/*
 * Copyright (C) 2020 Sebastiano Vigna
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package it.unimi.dsi.fastutil.ints;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import java.util.Collections;
import java.util.HashMap;

import org.junit.Test;

public class Int2IntArrayMapTest {
	@Test
	public void testCopyConstructor() {
		final Int2IntOpenHashMap m = new Int2IntOpenHashMap(new int [] {1, 2}, new int[] {3, 4});
		assertEquals(new Int2IntArrayMap(m), m);
		assertEquals(new HashMap<>(m), m);
	}

	@Test
	public void testValuesClear() {
		final Int2IntMap map = new Int2IntArrayMap(Int2IntMaps.singleton(42, 24));
		map.values().clear();
		assertTrue(map.isEmpty());
	}

	@Test
	public void testValuesRemove() {
		final Int2IntMap map = new Int2IntArrayMap(Int2IntMaps.singleton(42, 24));
		map.values().rem(24);
		assertTrue(map.isEmpty());
	}

	@Test
	public void testValuesRemoveAll() {
		final Int2IntMap map = new Int2IntArrayMap(Int2IntMaps.singleton(42, 24));
		map.values().removeAll(Collections.singleton(Integer.valueOf(24)));
		assertTrue(map.isEmpty());
	}
}