Home
last modified time | relevance | path

Searched refs:decodedParamters (Results 1 – 4 of 4) sorted by relevance

/external/nanohttpd/core/src/test/java/fi/iki/elonen/
DHttpHeadRequestTest.java57 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
58 assertEquals(0, this.testServer.decodedParamters.get("foo").size()); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
59 assertTrue(this.testServer.decodedParamters.get("bar") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
60 assertEquals(1, this.testServer.decodedParamters.get("bar").size()); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
61 assertEquals("", this.testServer.decodedParamters.get("bar").get(0)); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
67 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingMixtureOfParameters()
68 assertEquals(2, this.testServer.decodedParamters.get("foo").size()); in testDecodingMixtureOfParameters()
69 assertEquals("bar", this.testServer.decodedParamters.get("foo").get(0)); in testDecodingMixtureOfParameters()
70 assertEquals("baz", this.testServer.decodedParamters.get("foo").get(1)); in testDecodingMixtureOfParameters()
71 assertTrue(this.testServer.decodedParamters.get("zot") instanceof List); in testDecodingMixtureOfParameters()
[all …]
DHttpGetRequestTest.java50 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
51 assertEquals(0, this.testServer.decodedParamters.get("foo").size()); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
52 assertTrue(this.testServer.decodedParamters.get("bar") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
53 assertEquals(1, this.testServer.decodedParamters.get("bar").size()); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
54 assertEquals("", this.testServer.decodedParamters.get("bar").get(0)); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults()
60 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingMixtureOfParameters()
61 assertEquals(2, this.testServer.decodedParamters.get("foo").size()); in testDecodingMixtureOfParameters()
62 assertEquals("bar", this.testServer.decodedParamters.get("foo").get(0)); in testDecodingMixtureOfParameters()
63 assertEquals("baz", this.testServer.decodedParamters.get("foo").get(1)); in testDecodingMixtureOfParameters()
64 assertTrue(this.testServer.decodedParamters.get("zot") instanceof List); in testDecodingMixtureOfParameters()
[all …]
DHttpServerTest.java76 public Map<String, List<String>> decodedParamters; field in HttpServerTest.TestServer
112 this.decodedParamters = decodeParameters(session.getQueryParameterString()); in serve()
/external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
DTestNanoFileUpLoad.java98 public Map<String, List<String>> decodedParamters; field in TestNanoFileUpLoad.TestServer
161 this.decodedParamters = decodeParameters(session.getQueryParameterString()); in serve()