/**
  * Should use SKU for CRUD ID.
  */
 public function testCrudIDIsSKU()
 {
     $sku = $this->generator()->anyString();
     $this->mockModelAttribute('sku', $sku);
     $this->assertSame($sku, $this->productPresenter->crudId());
 }