Package limelight.ui.events.panel

Source Code of limelight.ui.events.panel.IlluminatedEventTest

package limelight.ui.events.panel;

import limelight.ui.MockPanel;
import limelight.ui.Panel;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class IlluminatedEventTest
{
  private Panel panel;
  private IlluminatedEvent event;

  @Before
  public void setUp() throws Exception
  {
    panel = new MockPanel();
    event = new IlluminatedEvent(panel);
  }

  @Test
  public void panel() throws Exception
  {
    assertEquals(panel, event.getRecipient());
  }
}
TOP

Related Classes of limelight.ui.events.panel.IlluminatedEventTest

TOP
Copyright © 2018 www.massapi.com. 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.