Project

General

Profile

Feature #2485

Updated by Radek Tomiška over 3 years ago

When integration test is @Transactional, then all automatic rollback occurs for all persisted data persisted in database, but cache is not evicted - e.g. when form definition is created or updated, then other test can fail because cache is invalid. updated. 
 If integration test (AbstractIntegrationTest) is @Transactional (+ @Rollback(true) by default), then clear all caches automatically.

Back