public class SuppressNonParentConstructorDemoTest {
@Test
public void testNewInstanceWithoutInvokingConstructor() throws Exception {
SuppressNonParentConstructorDemo constructorDemo = Whitebox
.newInstance(SuppressNonParentConstructorDemo.class);
assertEquals("Hello", constructorDemo.getHello());
}