@Before
 @Test
 public void testPut() throws Exception {
   hashMapImplementation = new HashMapImplementation<Integer, String>();
   hashMapImplementation.put(1, "Hasan");
   hashMapImplementation.put(10, "Mustafa");
   hashMapImplementation.put(13, "Mehmet");
 }