/**
   * Run the void checkMenuModelHealth() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testCheckMenuModelHealth_fixture_1() throws Exception {
    IMenuModel fixture2 = getFixture();

    fixture2.checkMenuModelHealth();

    // add additional test code here
  }
  /**
   * Run the void addMenuItem(IMenuItem) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testAddMenuItem_fixture_1() throws Exception {
    IMenuModel fixture2 = getFixture();
    IMenuItem item = new DefaultMenuItem(new Object());

    fixture2.addMenuItem(item);

    // add additional test code here
  }
  /**
   * Run the void addMenuItem(IMenuItem,IMenuItemRenderer) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testAddMenuItem_fixture_4() throws Exception {
    IMenuModel fixture2 = getFixture();
    IMenuItem item = new DefaultMenuItem(new Object());
    IMenuItemRenderer renderer = new GenericMarkupMenuItemRenderer();

    fixture2.addMenuItem(item, renderer);

    // add additional test code here
  }
  /**
   * Run the Iterator getMenuItemsDepthFirst() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testGetMenuItemsDepthFirst_fixture_1() throws Exception {
    IMenuModel fixture2 = getFixture();

    Iterator result = fixture2.getMenuItemsDepthFirst();

    // add additional test code here
    assertNotNull(result);
    assertEquals(false, result.hasNext());
  }
  /**
   * Run the MenuItemList getChildList(IMenuItem) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testGetChildList_fixture_1() throws Exception {
    IMenuModel fixture2 = getFixture();
    IMenuItem item = new DefaultMenuItem(new Object());

    MenuItemList result = fixture2.getChildList(item);

    // add additional test code here
    assertEquals(null, result);
  }
  /**
   * Run the MenuItemList getRootList() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:11 PM
   */
  public void testGetRootList_fixture_1() throws Exception {
    IMenuModel fixture2 = getFixture();

    MenuItemList result = fixture2.getRootList();

    // add additional test code here
    assertNotNull(result);
    assertEquals("(0) null", result.toString());
    assertEquals(null, result.getMenuItem());
    assertEquals(true, result.checkConsistency());
    assertEquals(0, result.getChildrenSize());
  }