mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
Use "true+preview" to check preview. By default, checks whether preview is equal to the actual action result. Alternatively, previewXyz file could be supplied to assert the preview text GitOrigin-RevId: 24a7a7539466137827200458ced235dd5e2b6d0a
15 lines
274 B
Java
15 lines
274 B
Java
// "Replace with 'peek'" "true-preview"
|
|
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
void test(List<String> list) {
|
|
// hello
|
|
/* in return */
|
|
long count = list.stream()
|
|
.peek(System.out::println)
|
|
.count();
|
|
System.out.println(count);
|
|
}
|
|
}
|