protected function setUp()
 {
     $this->layoutManipulator = $this->getMock('Oro\\Component\\Layout\\LayoutManipulatorInterface');
     $this->blockBuilder = $this->getMock('Oro\\Component\\Layout\\BlockBuilderInterface');
     $this->blockBuilder->expects($this->any())->method('getId')->will($this->returnValue(self::ROOT_ID));
     $this->blockBuilder->expects($this->any())->method('getLayoutManipulator')->will($this->returnValue($this->layoutManipulator));
     $this->builder = new FormLayoutBuilder();
 }