Description
Raised by Oscar:
Related with this, I’m trying to test the following:
@Test
public void totalOrRatio() {
// given
kit.assignToPerson(account.getAccountOwner());
this.nextRequest();
kit.getRegisteredForPerson().setSex(Sex.Man);
….
}
Where the Kit.getRegisteredForPerson() is cached:
// {{ RegisteredForPerson (property)
@Property(editing = Editing.DISABLED, notPersisted = true)
@MemberOrder(sequence = "1")
public Person getRegisteredForPerson() {
return this.queryResultsCache.execute(new Callable<Person>() {
@Override
public Person call() throws Exception
}, this.getClass(), "findRegisteredToPerson");
}
// }}
Despite invoking “this.nextRequest()” on the integtest, seems that the cache is still alive (being it a @RequestScoped service).
Would this also need to be improved for testing @RequestScoped services?