/**
  * Should simply give underlying product isStored.
  */
 public function testPassesIsStored()
 {
     $isStored = $this->generator()->anyBoolean();
     $this->mockModelMethod('isStored', $isStored);
     $this->assertSame($isStored, $this->productPresenter->isStored());
 }