mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
14 lines
215 B
Java
14 lines
215 B
Java
// "Move initializer to setUp method" "true"
|
|
public class X {
|
|
<caret>int i;
|
|
|
|
@org.junit.Before
|
|
public void setUp() throws Exception {
|
|
i = 7;
|
|
}
|
|
|
|
@org.junit.Test
|
|
public void test() {
|
|
}
|
|
}
|