-
Notifications
You must be signed in to change notification settings - Fork 3
MoveField test
Artyom Lobanov edited this page Jul 11, 2017
·
1 revision
Simple test, where static fields from one class has a lot of usage in another class
Member | Move to |
---|---|
ClassA.attributeA1 | ClassB |
ClassA.attributeA1 | ClassB |
package moveField;
public class ClassA {
static int attributeA1;
static int attributeA2;
static void methodA1() {
methodA2();
methodA2();
}
static void methodA2() {
methodA1();
methodA2();
}
}
package moveField;
public class ClassB {
static void methodB1() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB2() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB3() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB4() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB5() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB6() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
foo2();
}
static void methodB7() {
ClassA.attributeA1 = 0;
ClassA.attributeA2 = 0;
methodB1();
methodB2();
foo2();
}
static void foo1() {
methodB1();
methodB2();
methodB3();
methodB4();
methodB5();
methodB6();
methodB7();
}
static void foo2() {
methodB1();
methodB2();
methodB3();
methodB4();
methodB5();
methodB6();
methodB7();
}
}