Examples of UndefinedLaunchMode


Examples of rabbit.ui.internal.util.UndefinedLaunchMode

*/
public class UndefinedLaunchModeTest {

  @Test(expected = NullPointerException.class)
  public void testConstructor_idNull() {
    new UndefinedLaunchMode(null);
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

  }
 
  @Test
  public void testGetIdentifier() {
    String id = "sfjnhuywe";
    assertEquals(id, new UndefinedLaunchMode(id).getIdentifier());
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

  }
 
  @Test
  public void testGetLabel() {
    String id = "hello";
    assertEquals(id, new UndefinedLaunchMode(id).getLabel());
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

  }
 
  @Test
  public void testGetLaunchAsLabel() {
    String id = "world";
    assertEquals(id, new UndefinedLaunchMode(id).getLaunchAsLabel());
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

  }
 
  @Test
  public void testHashCode() {
    String id = "sfjnhuywe";
    assertEquals(id.hashCode(), new UndefinedLaunchMode(id).hashCode());
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

    assertEquals(id.hashCode(), new UndefinedLaunchMode(id).hashCode());
  }
 
  @Test
  public void testEquals() {
    UndefinedLaunchMode m1 = new UndefinedLaunchMode("abc");
    UndefinedLaunchMode m2 = new UndefinedLaunchMode(m1.getIdentifier());
    assertTrue(m1.equals(m2));
    assertTrue(m1.equals(m1));
    assertFalse(m1.equals(null));
   
    m2 = new UndefinedLaunchMode(m2.getIdentifier() + "123");
    assertFalse(m1.equals(m2));
  }
View Full Code Here

Examples of rabbit.ui.internal.util.UndefinedLaunchMode

          break;
        case LAUNCH_MODE: {
          String id = d.getLaunchModeId();
          ILaunchMode mode = manager.getLaunchMode(id);
          if (mode == null) {
            mode = new UndefinedLaunchMode(id);
          }
          segments.add(mode);
          break;
        }
        case LAUNCH_TYPE: {
View Full Code Here
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.