public void testRemoveParam3() {
HttpParams httpparams = new HttpParams("https://www.siemens.com/pfad/zum/servlet/SieMap?a=b&c=d&a=e");
String aName1= "a";
String aValue2= "e";
httpparams.removeParam(aName1, aValue2);
String[] tValues = httpparams.getParameterValues(aName1);
for (int i = 0; i < tValues.length; i++) {
if (tValues[i].equals(aValue2)) {
fail("removed" + aName1 + " with value " + aValue2 + " but it is still there.");
}