How mock private method that modify private variables?
class SomeClass{ private int one; private int second; public SomeClass(){} public in
Power mock might help you here. But generally I would make the method protected and override the previously-private method to do what ever I wanted it to do.