request = mock( HttpServletRequest.class );
when( request.getMethod() ).thenReturn( "GET" );
response = mock( HttpServletResponse.class );
servlet = spy( new ViewAction() );
mp.defineInstance( IUnifiedRepository.class, mock( IUnifiedRepository.class ) );
mp.start();
PentahoSessionHolder.setSession( new StandaloneSession( "test" ) );
}