blob: 7bfbf55944720be2a73c6eadaa44f82ea59ad704 [file] [log] [blame]
// "Move initializer to setUp method" "true"
public class X {
<caret>int i;
@org.testng.annotations.BeforeMethod
public void setUp() throws Exception {
i = 7;
}
@org.testng.annotations.Test
public void test() {
}
}