new UnitTest()
{
public void execute() throws Exception
{
mgr.clearCache();
DataCache cache = mgr.getDecorator(DataCache.class);
long readCount0 = cache.getReadCount();
userPortalConfigSer_.getUserPortalConfig("classic", null);
long readCount1 = cache.getReadCount();
assertTrue(readCount1 > readCount0);
userPortalConfigSer_.getUserPortalConfig("classic", null);
long readCount2 = cache.getReadCount();
assertEquals(readCount1, readCount2);
}
}.execute(null);
}