private Random random = new Random(301);
@GwtIncompatible("NullPointerTester")
public void testNulls() throws Exception {
NullPointerTester tester = new NullPointerTester();
tester.testAllPublicConstructors(AtomicLongMap.class);
tester.testAllPublicStaticMethods(AtomicLongMap.class);
AtomicLongMap<Object> map = AtomicLongMap.create();
tester.testAllPublicInstanceMethods(map);
}