package com.crossoverjie.actual; import org.junit.Test; import java.util.Map; import static org.junit.Assert.*; public class LRULinkedMapTest { @Test public void put() throws Exception { LRULinkedMap map = new LRULinkedMap(3) ; map.put("1",1); map.put("2",2); map.put("3",3); for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } System.out.println(""); map.put("4",4); for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } } @Test public void put2() throws Exception { LRULinkedMap map = new LRULinkedMap(4) ; map.put("1",1); map.put("2",2); map.put("3",3); map.put("4",4); for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } System.out.println(""); map.put("5",5); for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } } @Test public void get() throws Exception { LRULinkedMap map = new LRULinkedMap(4) ; map.put("1",1); map.put("2",2); map.put("3",3); map.put("4",4); for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } System.out.println(""); map.get("1") ; for (Map.Entry e : map.getAll()){ System.out.print(e.getKey() + " : " + e.getValue() + "\t"); } } }