mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
16 lines
239 B
Java
16 lines
239 B
Java
import org.junit.Before;
|
|
|
|
// "Move initializer to setUp method" "true-preview"
|
|
public class X {
|
|
<caret>int i;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
i = 7;
|
|
}
|
|
|
|
@org.junit.Test
|
|
public void test() {
|
|
}
|
|
}
|