-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathZipWithIndexDoubleSpliteratorTest.java
49 lines (39 loc) · 1.62 KB
/
ZipWithIndexDoubleSpliteratorTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package spliterators.part2.example;
import org.junit.Test;
import spliterators.part2.exercise.ZipWithIndexDoubleSpliterator;
import spliterators.part3.exercise.Pair;
import java.util.List;
import java.util.Spliterators;
import java.util.concurrent.ThreadLocalRandom;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;
public class ZipWithIndexDoubleSpliteratorTest {
private double[] getRandomArray(int length) {
final double[] result = new double[length];
for (int i = 0; i < length; i++)
result[i] = ThreadLocalRandom.current().nextInt();
return result;
}
@Test
public void nonzeroLengthSuccess() {
final double[] randomArray = getRandomArray(10);
final List<String> collect = StreamSupport.stream(new ZipWithIndexDoubleSpliterator(
Spliterators.spliterator(randomArray, 0)), true)
.map(p -> new Pair<>(p.getIndex() + 1, p.getValue() + 1))
.map(Pair::toString)
.collect(Collectors.toList());
assertThat(collect.size(), is(10));
}
@Test
public void zeroLengthSuccess() {
final double[] randomArray = getRandomArray(0);
final List<String> collect = StreamSupport.stream(new ZipWithIndexDoubleSpliterator(
Spliterators.spliterator(randomArray, 0)), true)
.map(p -> new Pair<>(p.getIndex() + 1, p.getValue() + 1))
.map(Pair::toString)
.collect(Collectors.toList());
assertThat(collect.size(), is(0));
}
}