Package org.apache.tapestry.internal.events

Examples of org.apache.tapestry.internal.events.UpdateListener


public class UpdateListenerHubImplTest extends TestBase
{
    @Test
    public void add_listener_and_invoke() throws Exception
    {
        UpdateListener listener = newMock(UpdateListener.class);

        UpdateListenerHub hub = new UpdateListenerHubImpl();

        listener.checkForUpdates();

        replay();

        hub.addUpdateListener(listener);
View Full Code Here

TOP

Related Classes of org.apache.tapestry.internal.events.UpdateListener

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.