* ����������� ������ ���� ������������ ���������� ��������.
*/
public static boolean test_MAXSIZE() throws Exception {
SynchronizedCache cache = new SynchronizedCache();
int maxSize = 100;
CacheConfig cacheConfig = new CacheConfigImpl("cacheId", null, 0, 0, 0, maxSize, null, "lru", "strong");
cache.setCacheConfig(cacheConfig);
for (int i = 0, maxi = maxSize*2; i <maxi; i++) {
cache.put(new Long(i), new Long(i));
}