I'm having difficulty finding a way to set a static field of a class. It's basically like this:

public class Foo{
    // ...
    private static B b = null;
}

where B is another class.

Is there any way to do this in PowerMock other than with setInternalStateFromContext()? Using the context class method seems a bit of overkill for setting one field.

Thanks.

link|improve this question
feedback

2 Answers

Whitebox.setInternalState(Foo.class, b);

Works as long as you set a non-null value, and if theres only one field with the class of B. If you can't rely on that luxury, you have to provide the field-name and cast the null to the type you want to set. In that case you would need to write something like this:

 Whitebox.setInternalState( Foo.class, "b", (B)null );
link|improve this answer
feedback

You simply do:

Whitebox.setInternalState(Foo.class, b);

where b is the instance of B that you want to set.

link|improve this answer
Is the value you want to set for 'b' just another parameter of setInternalState()? – Craig Anderson Mar 22 '11 at 21:05
Yes it's the second parameter. E.g. B new = B(); Whitebox.setInternalState(Foo.class, b); – Johan May 26 '11 at 9:47
this works as long as you set a non-null value. And if theres only one field with the class of b. – cproinger Jan 18 at 14:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.