Package hudson.security

Examples of hudson.security.HudsonPrivateSecurityRealm$Details$ConverterImpl


/**
* @author Kohsuke Kawaguchi
*/
public class MarkupFormatterTest extends HudsonTestCase {
    public void testConfigRoundtrip() throws Exception {
        hudson.setSecurityRealm(new HudsonPrivateSecurityRealm(false));
        hudson.setAuthorizationStrategy(new Unsecured());
        hudson.setMarkupFormatter(new DummyMarkupImpl("hello"));
        configRoundtrip();

        assertEquals("hello", ((DummyMarkupImpl)hudson.getMarkupFormatter()).prefix);
View Full Code Here

TOP

Related Classes of hudson.security.HudsonPrivateSecurityRealm$Details$ConverterImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.