/**
  * @expectedException \Magento\Framework\Exception\InputException
  * @expectedExceptionMessage Only implemented for configurable product: configurable
  */
 public function testGetListNotConfigurableProduct()
 {
     $productSku = "configurable";
     $this->productRepositoryMock->expects($this->once())->method('get')->with($productSku)->willReturn($this->productMock);
     $this->productMock->expects($this->once())->method('getTypeId')->willReturn('simple');
     $this->model->getList($productSku);
 }