/**
   * 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());
  }