import org.jetbrains.annotations.NotNull; public class SetupJunit extends junit.framework.TestCase { @NotNull String foo; @NotNull String bar; public void setUp() { foo = "foo"; } public void notSetUp() { bar = "bar"; } }