public class SuppressConstructorHierarchyDemoTest {
@Test
public void testSuppressConstructor() throws Exception {
suppress(constructor(SuppressConstructorHierarchy.class));
SuppressConstructorHierarchy tested = new SuppressConstructorHierarchy("message");
final String message = tested.getMessage();
assertNull("Message should have been null since we're skipping the execution of the constructor code. Message was \"" + message + "\".",
message);
}