private void executeCacheEviction(TestEvent event, TestExecutionPhase currentPhase)
{
JpaCacheEviction jpaCacheEviction = obtainAnnotation(event);
if (jpaCacheEviction != null)
{
final TestExecutionPhase phase = obtainPhase(jpaCacheEviction);
if (phase.equals(currentPhase))
{
final Collection<EntityManager> ems = obtainEntityManagers(jpaCacheEviction);
final JpaCacheEvictionStrategy strategy = obtainStrategy(jpaCacheEviction);
for (EntityManager em : ems)
{