public function testGetSuggestedAttributesIfTheyNotApplicable()
 {
     $this->attributeMock->expects($this->never())->method('getId');
     $this->attributeMock->expects($this->never())->method('getFrontendLabel');
     $this->attributeMock->expects($this->never())->method('getAttributeCode');
     $this->attributeMock->expects($this->never())->method('getSource');
     $this->configurableAttributeHandler->expects($this->once())->method('isAttributeApplicable')->with($this->attributeMock)->willReturn(false);
     $this->assertEquals([], $this->suggestedListModel->getSuggestedAttributes($this->labelPart));
 }