public void testRemoveAttribute() {
   request.setParameter("Some param", "Some value");
   // perform test
   try {
     tested.removeAttribute("Some param");
     fail("UnsupportedOperationException expected");
   } catch (UnsupportedOperationException expected) {
     // expected
   }
 }