@Test
@PrepareForTest(UseMe.class)
public void whenClassIsInstantiatedUsingReflectionMakeSureItCanBeCastedToPowerMockLoadedVersionOfTheClassWhenUsingChunking()
throws Exception {
ReflectionInstantiator reflectionInstantiator = new ReflectionInstantiator();
assertTrue(
"Reflection instantiation doesn't work, Thread context class-loader not set to MockCL",
reflectionInstantiator.instantiateUseMe());
}