Package org.apache.shiro.util

Examples of org.apache.shiro.util.Initializable


import static org.easymock.EasyMock.*;

public class InitializableInjectionListenerTest {
    @Test
    public void testAfterInjection() throws Exception {
        Initializable initializable = createMock(Initializable.class);

        initializable.init();

        replay(initializable);

        InitializableInjectionListener underTest = new InitializableInjectionListener();
        underTest.afterInjection(initializable);
View Full Code Here

TOP

Related Classes of org.apache.shiro.util.Initializable

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.