@Test
public void privateConstructorTest() throws Exception {
Constructor<MyClass> constructor = MyClass.class.getDeclaredConstructor();
assertEquals(constructor.isAccessible(), false);
constructor.setAccessible(true);
constructor.newInstance((Object[]) null);
}