@Test
public void testEchoParamWithUpperCaseInValue() {
final String camelCased = "ThisIsAValueAndSparkShouldRetainItsUpperCasedCharacters";
try {
UrlResponse response = testUtil.doMethod("GET", "/param/" + camelCased, null);
Assert.assertEquals(200, response.status);
Assert.assertEquals("echo: " + camelCased, response.body);
} catch (Throwable e) {
throw new RuntimeException(e);
}