import org.junit.Test;

import java.util.random.RandomGeneratorFactory;

import static org.junit.Assert.assertNotEquals;

public class Main {
    @Test
    public void test()
    {
        assertNotEquals(0, RandomGeneratorFactory.all().filter(x->x.isArbitrarilyJumpable()).count());
    }
}
