mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
294 B
Java
11 lines
294 B
Java
import org.hamcrest.CoreMatchers;
|
|
import org.jetbrains.annotations.Nullable;
|
|
import static org.junit.Assume.assumeThat;
|
|
|
|
class Contracts {
|
|
|
|
private void checkNotNullValue(@Nullable Object o) {
|
|
assumeThat(o, CoreMatchers.<Object>notNullValue());
|
|
System.out.println(o.hashCode());
|
|
}
|
|
} |