}
@Test
public void testPersistenceUnitConfigurationException()
{
PersistenceUnitConfigurationException exception = new PersistenceUnitConfigurationException("Error with string");
Assert.assertNotNull(exception);
exception = new PersistenceUnitConfigurationException(new RuntimeException());
Assert.assertNotNull(exception);
exception = new PersistenceUnitConfigurationException();
Assert.assertNotNull(exception);
exception = new PersistenceUnitConfigurationException("KunderaTests", new RuntimeException());
Assert.assertNotNull(exception);
exception = new PersistenceUnitConfigurationException("error with string ");
Assert.assertNotNull(exception);
exception = new PersistenceUnitConfigurationException(new RuntimeException());
Assert.assertNotNull(exception);
}