public void bindDoubleQuotedShortKey() throws Exception {
MockRoundtrip trip = getRoundtrip();
trip.addParameter("mapShortInteger[\"1\"]", "1");
trip.addParameter("mapShortInteger[\"200\"]", "2");
trip.addParameter("mapShortInteger[\"3000\"]", "3");
trip.execute();
MapBindingTests bean = trip.getActionBean(MapBindingTests.class);
Assert.assertEquals(bean.getMapShortInteger().get( (short) 1 ), new Integer(1));
Assert.assertEquals(bean.getMapShortInteger().get( (short) 200), new Integer(2));
Assert.assertEquals(bean.getMapShortInteger().get( (short) 3000), new Integer(3));