mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 01:53:51 +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
21 lines
355 B
Java
21 lines
355 B
Java
// "Replace with 'orElseThrow'" "true-preview"
|
|
|
|
import java.util.Optional;
|
|
|
|
class Main {
|
|
native Optional<String> getOptional();
|
|
|
|
void test() {
|
|
/*2*/
|
|
/*3*/
|
|
/*4*/
|
|
/*5*/
|
|
/*6*/
|
|
/*10*/
|
|
/*11*/
|
|
/*7*/
|
|
/*8*/
|
|
/*9*/
|
|
getOptional().orElseThrow(/*1*/IllegalArgumentException::new/*12*/)/*13*/;
|
|
}
|
|
} |