In my unit tests I need to set the "workingDir" system property to Null.

But I can not do somesing like this, because It give me NullPointerException:

System.setProperty("workingDir", null);

How can I do it?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can't set a property to have an actual null value - you can only clear it, like this:

System.clearProperty("workingDir");
link|improve this answer
Might be irrelevant, but this works only with JDK 5 or newer – darioo Dec 1 '10 at 11:51
feedback

System.setProperty() is internally implemented using a Properties object, which in turn uses the good old Hashtable. Those hashtables never let you set a null value using theput() method, so it can't really be done that way. Jon Skeet's post has the solution.

link|improve this answer
feedback

You can't do it, as setProperty method throws NullPointerException if any of it's arguments is null. You can put an empty string there and check for it in your unit tests or simply clearProperty, as Jon suggested.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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