/**
  * Should compose view with self.
  */
 public function testCompose()
 {
     $this->view->expects($this->atLeastOnce())->method('with')->with(['location' => $this->locationComposer]);
     $this->locationComposer->compose($this->view);
 }