For anybody wondering about this, it's probably due to:
@PrepareForTest({ MyClass.class })
When you remove the brackets like this:
@PrepareForTest(MyClass.class)
it should work.
I had a similar problem with two classes, when removing one of the classes and the brackets it got covered.