/**
  * @author nathanhelenihi
  * @group api
  * @dataProvider fixtureAuthCfgObject
  */
 public function testCallApi(array $fxt)
 {
     if (!$fxt['from_env']) {
         $this->markTestSkipped('Environment credentials not set.');
     }
     $obj = new ChannelList($fxt);
     $obj->setConfig('dataFormat', 'array');
     if (!$obj->isEnabled()) {
         $this->markTestSkipped('API is disabled!');
     }
     $rsp = $obj->callApi();
     $this->assertTrue(isset($rsp['response']['body']['Channels']));
     $this->assertGreaterThan(20, count($rsp['response']['body']['Channels']));
 }