@Test
public void testParsePortletWindowIdSuffix() {
final MockHttpServletRequest request = new MockHttpServletRequest();
final Set<String> ids = ImmutableSet.of("pw2");
final MockPortletWindowId expectedPortletWindowId = new MockPortletWindowId("pw2");
when(this.portletWindowRegistry.getPortletWindowId(request, "pw2")).thenReturn(expectedPortletWindowId);
IPortletWindowId portletWindowId = this.urlSyntaxProvider.parsePortletWindowIdSuffix(request,
UrlSyntaxProviderImpl.PARAM_WINDOW_STATE, ids,