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