I have code that looks like this:
public void testSomething1() {
}
public void testSomething2() {
}
public void testSomething3() {
}
And I want the result to look like this with find and replace:
public void testSomething2() {
}
public void testSomething3() {
}
public void testSomething4() {
} I need this because I just realized I needed to add another test between 2 and 3 and leave the rest intact. I wish I could add it at the end, but I can't, I have to use this test generation tool and implement the tests for a school project. I have 51 tests and I don't want to shift n + 1 manually for ever test, especially since theres a comment referring to the number. Oh please tell me there's a way T_T. Thank you!