mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +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
9 lines
273 B
Java
9 lines
273 B
Java
// "Replace 'stream().toArray()' with 'toArray()'" "true-preview"
|
|
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
public void testToArray(List<String[]> data) {
|
|
String[][] array = data.subList(0, /*max number*/ 10).toArray((size) -> /*generate array*/ new String[(size)][]);
|
|
}
|
|
} |