public void bindSingleQuotedStringKey() throws Exception {
MockRoundtrip trip = getRoundtrip();
trip.addParameter("mapStringLong['one']", "1");
trip.addParameter("mapStringLong['two']", "2");
trip.addParameter("mapStringLong['three']", "3");
trip.execute();
MapBindingTests bean = trip.getActionBean(MapBindingTests.class);
Assert.assertEquals(bean.getMapStringLong().get("one"), new Long(1));
Assert.assertEquals(bean.getMapStringLong().get("two"), new Long(2));
Assert.assertEquals(bean.getMapStringLong().get("three"), new Long(3));