You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The ee.jakarta.tck.persistence.core.query.flushmode.* tests are failing because there don't appear to be any test entities to query. Looking at ee.jakarta.tck.persistence.core.query.flushmode.Client2#flushModeTest2:
the EE11 test is missing the @SetupMethod(name = "setupOrderData") which should trigger a call to the superclass setupOrderData to create the test entities.
Th SetupMethod annotation is used in these EE10 test packages:
Describe the bug
The ee.jakarta.tck.persistence.core.query.flushmode.* tests are failing because there don't appear to be any test entities to query. Looking at ee.jakarta.tck.persistence.core.query.flushmode.Client2#flushModeTest2:
vs the com.sun.ts.tests.jpa.core.query.flushmode.Client#flushModeTest2 test in EE10:
the EE11 test is missing the
@SetupMethod(name = "setupOrderData")
which should trigger a call to the superclass setupOrderData to create the test entities.Th
SetupMethod
annotation is used in these EE10 test packages:com.sun.ts.tests.jpa.core.criteriaapi.CriteriaBuilder
com.sun.ts.tests.jpa.core.criteriaapi.CriteriaQuery
com.sun.ts.tests.jpa.core.criteriaapi.From
com.sun.ts.tests.jpa.core.criteriaapi.metamodelquery
com.sun.ts.tests.jpa.core.criteriaapi.misc
com.sun.ts.tests.jpa.core.criteriaapi.Root
com.sun.ts.tests.jpa.core.criteriaapi.strquery
com.sun.ts.tests.jpa.core.query.flushmode
com.sun.ts.tests.jpa.core.query.language
We need to add the correct
SetupMethod
annotation to the equivalent packages in EE11.The text was updated successfully, but these errors were encountered: