mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
54eb66996d
GitOrigin-RevId: 34f3dda8a83aada3c78c9888aa995d010af2a62a
16 lines
231 B
Java
16 lines
231 B
Java
import org.junit.Before;
|
|
|
|
// "Move initializer to setUp method" "true"
|
|
public class X {
|
|
<caret>int i;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
i = 7;
|
|
}
|
|
|
|
@org.junit.Test
|
|
public void test() {
|
|
}
|
|
}
|