/**
  * Get the build options.
  *
  * @return array
  */
 public function getOptions()
 {
     return $this->options->getArrayCopy();
 }
 function it_gets_the_options(Options $options)
 {
     $options->getArrayCopy()->willReturn(array());
     $this->getOptions()->shouldBeArray();
 }