인라인으로 초기화되는 필드 변수를 어떻게 모의 할 수 있습니까?
class Test {
private Person person = new Person();
...
public void testMethod() {
person.someMethod();
...
}
}
여기 에서는 변수 초기화를 모의해야하는 메서드를 person.someMethod()
테스트하는 동안 모의하고 싶습니다 . 단서가 있습니까?Test.testMethod()
person
편집 : Person 클래스를 수정할 수 없습니다.