/**
  * Creates a new fixture to test with.
  */
 protected function setUp()
 {
     $this->builderMock = m::mock('phpDocumentor\\Descriptor\\ProjectDescriptorBuilder');
     $this->argumentAssemblerMock = m::mock('phpDocumentor\\Descriptor\\Builder\\Reflector\\ArgumentAssembler');
     $this->fixture = new FunctionAssembler($this->argumentAssemblerMock);
     $this->fixture->setBuilder($this->builderMock);
 }