assertFalse(exporter.getShouldCheckPermutationStrongName());
}
/** Test get/setXsrfTokenService(). */
@Test public void testGetSetSessionCookieName() {
IXsrfTokenService xsrfTokenService = mock(IXsrfTokenService.class);
SecuredServiceExporter exporter = new SecuredServiceExporter(false, null);
assertNull(exporter.getXsrfTokenService());
exporter.setXsrfTokenService(xsrfTokenService);
assertSame(xsrfTokenService, exporter.getXsrfTokenService());