assertEquals(2,props.getAllLiteratureReferences().size());
//Test4:
String sTitle3 = "Comic Book";
String sURI3 = "ISBN: 111111";
props.addLiteratureReference(sTitle3, sURI3);
//Element should not have been added:
assertEquals(3,props.getAllLiteratureReferences().size());
props.removeLiteratureReference(sTitle,sURI);
assertEquals(2,props.getAllLiteratureReferences().size());