validateConcurrentHashMap(concurrentHashMapImpl);
Queue<SimplePojoToTestSetters> queue = pojo.getQueue();
Assert.assertNotNull("The queue cannot be null!", queue);
Assert.assertTrue("The queue must be an instance of LinkedList",
queue instanceof LinkedList);
SimplePojoToTestSetters pojoQueueElement = queue.poll();
Assert.assertNotNull("The queue element cannot be null!",
pojoQueueElement);
@SuppressWarnings("rawtypes")
List nonGenerifiedList = pojo.getNonGenerifiedList();
Assert.assertNotNull("The non generified list cannot be null!",