mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 82fb6e512e21188ebcbd1fe4a1af66c2383fdb5f
14 lines
307 B
Java
14 lines
307 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class SetupJunit extends junit.framework.TestCase {
|
|
@NotNull String foo;
|
|
<warning descr="Not-null fields must be initialized">@NotNull</warning> String bar;
|
|
|
|
public void setUp() {
|
|
foo = "foo";
|
|
}
|
|
|
|
public void notSetUp() {
|
|
bar = "bar";
|
|
}
|
|
} |