mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +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
24 lines
529 B
Java
24 lines
529 B
Java
// "Replace EnumSet.of().stream() with Stream.of()" "true-preview"
|
|
|
|
import java.util.EnumSet;
|
|
import java.util.List;
|
|
import java.util.stream.Stream;
|
|
|
|
import static java.util.stream.Collectors.toList;
|
|
|
|
|
|
public class Tests {
|
|
interface HasCode {
|
|
default String getCode() {return this.toString();}
|
|
}
|
|
|
|
enum Status implements HasCode {
|
|
Approved, Pending, Stored
|
|
}
|
|
|
|
void test() {
|
|
List<String> list = Stream.of(Status.Approved, (Status.Pending), Status.Stored)
|
|
.map(HasCode::getCode).collect(toList());
|
|
}
|
|
}
|