expect(request.getAttribute(WebUtils.INCLUDE_REQUEST_URI_ATTRIBUTE)).andReturn("/nochain");
expect(request.getCharacterEncoding()).andStubReturn(null);
expect(patternMatcher.matches(chainOne, "/nochain")).andReturn(false);
expect(patternMatcher.matches(chainTwo, "/nochain")).andReturn(false);
expect(patternMatcher.matches(chainThree, "/nochain")).andReturn(false);
ctrl.replay();
assertNull("Expected no chain to match, did not get a null value in return.", underTest.getChain(request, response, originalChain));