Package limelight.ui.events.panel

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

//- Copyright © 2008-2011 8th Light, Inc. All Rights Reserved.
//- Limelight and all included source files are distributed under terms of the MIT License.

package limelight.ui.events.panel;

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

import java.awt.*;

import static junit.framework.Assert.assertEquals;

public class MouseExitedEventTest
{
  private Panel panel;
  private MouseExitedEvent event;

  @Before
  public void setUp() throws Exception
  {
    panel = new MockPanel();
    event = new MouseExitedEvent(0, new Point(0, 0), 0);
  }

  @Test
  public void isNotInheritable() throws Exception
  {
    assertEquals(false, event.isInheritable());
  }
}
TOP

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

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.