I am using an enum singleton that looks (somewhat) like this:
public enum mySingleton{
INSTANCE;
private static String myDrink = null;
public String getMyDrink(boolean isWizard)
{
if (myDrink == null)
{
if (isWizard)
myDrink = "Butterbeer";
else
myDrink = "Whiskey";
}
return myDrink;
}
//Some more functionality
//...
}
Now, to test this singleton i have a few tests that use it. But since all the test run one after the other in the same thread, once i run the first test, myDrink is set for all the other tests.
I don't like that.
I was thinkin of using an @After function and use reflection to do set myDrink to null.
Iv'e tried this:
Field f = mySingleton.class.getField("myDrink");
f.setAccessible(true);
f.set(String.class, null);
But i get a java.lang.NoSuchFieldException.
How can it be done?
f.set(String, null)looks dodgy to me... I suspect that isn't your real code. Can you give a short but complete program to demonstrate this? What you're discovering is that singletons are a pain for test, by the way... you might take the hint and stop using mutable singletons :) (Additionally, having a static field is a bit bizarre there... why is it static when you've gone to all the trouble of making sure there's only a single instance?) – Jon Skeet Oct 28 '11 at 6:16f.set(String, null)and theBoolean. There's not much i can do with the singleton. I need to be able to test against it. – summerbulb Oct 28 '11 at 6:27