public function testGetLabelWithoutCustomText()
 {
     $category = 'Some text';
     $id = 1;
     $idPath = 'id/' . $id;
     $store = 1;
     $this->block->setData('id_path', $idPath);
     $this->storeManager->expects($this->once())->method('getStore')->will($this->returnValue($store));
     $this->entityResource->expects($this->once())->method('getAttributeRawValue')->with($id, 'name', $store)->will($this->returnValue($category));
     $this->assertEquals($category, $this->block->getLabel());
 }