67 assertEquals(
"http://localhost",UriUtils.stripQueryParam(
"http://localhost?login_hint=michael",
"login_hint"));
68 assertEquals(
"http://localhost",UriUtils.stripQueryParam(
"http://localhost?login_hint=michael@me.com",
"login_hint"));
69 assertEquals(
"http://localhost?param=test",UriUtils.stripQueryParam(
"http://localhost?param=test&login_hint=michael",
"login_hint"));
70 assertEquals(
"http://localhost?param=test",UriUtils.stripQueryParam(
"http://localhost?param=test&login_hint=michael@me.com",
"login_hint"));
71 assertEquals(
"http://localhost?param=test", UriUtils.stripQueryParam(
"http://localhost?login_hint=michael¶m=test",
"login_hint"));
72 assertEquals(
"http://localhost?param=test",UriUtils.stripQueryParam(
"http://localhost?login_hint=michael@me.com¶m=test",
"login_hint"));
73 assertEquals(
"http://localhost?pre=test¶m=test",UriUtils.stripQueryParam(
"http://localhost?pre=test&login_hint=michael¶m=test",
"login_hint"));
74 assertEquals(
"http://localhost?pre=test¶m=test",UriUtils.stripQueryParam(
"http://localhost?pre=test&login_hint=michael@me.com¶m=test",
"login_hint"));