Provide the following packages and classes.
Class big.on.Master:
package big.on;
import big.off.Prauxy;
public class Master {
publicstatic void main(String[] args) {
Auxy auxy = new Auxy();
auxy.method();
auxy.method();
auxy.method();
Prauxy prauxy = new Prauxy();
prauxy.method();
}
}
Class big.on.Auxy:
package big.on;
public class Auxy {
public void method() {
int i = 0;
i++;
}
}
Class big.off.Prauxy:
package big.off;
public class Prauxy {
public void method() {
int i = 0;
i++;
}
}
Coverage settings: main class is Master, big.on package is included, big.off package is not.
Run, get colors. All lines are green.
Erase two calls of auxy.method(); in Master.main(). All lines are still green.
Copy all (2) lines of Auxy.method() body.
Select all lines of Master.main(). Paste.
Undo. See that there is 1 red line.
I'm not sure how mush is it serious.
Description
Provide the following packages and classes.
Class big.on.Master:
package big.on;
import big.off.Prauxy;
public class Master {
publicstatic void main(String[] args) {
Auxy auxy = new Auxy();
auxy.method();
auxy.method();
auxy.method();
Prauxy prauxy = new Prauxy();
prauxy.method();
}
}
Class big.on.Auxy:
package big.on;
public class Auxy {
public void method() {
int i = 0;
i++;
}
}
Class big.off.Prauxy:
package big.off;
public class Prauxy {
public void method() {
int i = 0;
i++;
}
}
Coverage settings: main class is Master, big.on package is included, big.off package is not.
Run, get colors. All lines are green.
Erase two calls of auxy.method(); in Master.main(). All lines are still green.
Copy all (2) lines of Auxy.method() body.
Select all lines of Master.main(). Paste.
Undo. See that there is 1 red line.
I'm not sure how mush is it serious.
8533: bug repeats, but after "refresh" (e.g. re-selecting the same coverage results in chooser, colors are repaired).
Waiting for the fix of IDEADEV-27874.
Alexander Chernikov - 05 Jul 08 19:11 8533: bug repeats, but after "refresh" (e.g. re-selecting the same coverage results in chooser, colors are repaired).
Waiting for the fix of IDEADEV-27874.
Alexander Chernikov - 11 Jul 08 19:23 8559: the case from description occurs again.
After reloading coverage results by Ctrl+Alt+F6 the colors are correctly restored.
Waiting for the fix of
IDEADEV-27874.