Description
org.apache.deltaspike.data.impl.meta.unit.PersistenceUnitsTest fails when run against weblogic with:
Caused By: java.lang.ClassNotFoundException: org.apache.deltaspike.data.test.util.TestData
The problem is that the class TransactionalTestCase.class is added to the war but org.apache.deltaspike.data.test.util.TestData is not. Removing
TransactionalTestCase.class, MappedOneRepository.class)
from the .addClasses in PersistenceUnitsTest allows this test to pass.
There appears to be no reason to have TransactionalTestCase in the war for this test so the easy solution is to just remove it.