public function testCanShowTab()
 {
     $this->assertTrue($this->infoBlock->canShowTab());
 }
 /**
  * @param array $integrationData
  * @param bool $expectedValue
  * @dataProvider canShowTabProvider
  */
 public function testCanShowTab($integrationData, $expectedValue)
 {
     $this->webapiBlock = $this->getWebapiBlock($integrationData);
     $this->assertEquals($expectedValue, $this->webapiBlock->canShowTab());
 }