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

it.unimi.dsi.fastutil.ints.IntSetsTest Maven / Gradle / Ivy

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

import static org.junit.Assert.assertNull;

import org.junit.Test;

public class IntSetsTest {
	@Test
	public void testToArrayShouldNullElementAfterLastEntry() {
		IntSet set = IntSets.EMPTY_SET;
		Object[] values = new Object[] { "test" };
		set.toArray(values);
		assertNull(values[0]);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy