}
@Test
public void testGetState_intConstructor() throws Exception {
final int expected = 12;
PrivateConstructorInstantiationDemo tested = invokeConstructor(
PrivateConstructorInstantiationDemo.class, expected);
int actual = tested.getState();
assertEquals("Expected and actual did not match.", expected, actual);
}