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

test.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 {
	@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 ) );
	}
}