All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.unimi.dsi.fastutil.objects.AbstractObject2IntFunctionTest Maven / Gradle / Ivy

The newest version!
package it.unimi.dsi.fastutil.objects;

import static org.junit.Assert.*;

import org.junit.Test;

public class AbstractObject2IntFunctionTest {
	@SuppressWarnings("deprecation")
	@Test
	public void testRemove() {
		final Object2IntArrayMap a = new Object2IntArrayMap();
		final Object key = new Object();
		a.put(key, 1);
		assertEquals(Integer.valueOf(1), a.remove(key));
	}
}