* ��������� �������� ���������� LFU. ��� ������������ ���� ������ ���������
* ������ ������� ������������� ���������� ���������� ���.
*/
public static boolean test_EVICTION_ALGORITHM_LFU() throws Exception {
SynchronizedCache cache = new SynchronizedCache();
CacheConfig cacheConfig = new CacheConfigImpl("cacheId", null, 0, 0, 0, 2, null, "lfu", "strong");
cache.setCacheConfig(cacheConfig);
Object o1 = "o1";
Object o2 = "o2";
Object o3 = "o3";