blob: ade8d7d51da74417960ded45f70b22e51bf14f57 [file] [log] [blame]
/*
* Copyright (c) 2014, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2015 IBM Corporation. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// 11/17/2014-2.6.0 Rick Curtis
// - 445546: Test NPE in ConversionManager.
package org.eclipse.persistence.jpa.test.basic;
import jakarta.persistence.EntityManager;
import jakarta.persistence.EntityManagerFactory;
import org.eclipse.persistence.jpa.test.basic.model.ByteArrayEntity;
import org.eclipse.persistence.jpa.test.framework.Emf;
import org.eclipse.persistence.jpa.test.framework.EmfRunner;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(EmfRunner.class)
public class TestNullByteArrayEntry {
@Emf(classes = { ByteArrayEntity.class })
private EntityManagerFactory emf;
@Test
public void testNullInByteArray() {
EntityManager em = emf.createEntityManager();
try {
em.getTransaction().begin();
ByteArrayEntity e = new ByteArrayEntity();
em.persist(e);
em.flush();
} finally {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}