/**
  * @author nathanhelenihi
  * @group api
  * @dataProvider fixtureAuthCfgObject
  */
 public function testCallApi(array $fxt)
 {
     if (!$fxt['from_env']) {
         $this->markTestSkipped('Environment credentials not set.');
     }
     $obj = new BookingList($fxt);
     $obj->setConfig('dataFormat', 'array');
     if (!$obj->isEnabled()) {
         $this->markTestSkipped('API is disabled!');
     }
     // No optional parameters should throw exception
     $caught = false;
     try {
         $rsp = $obj->callApi();
     } catch (\exception $e) {
         $caught = true;
         $this->assertInstanceOf('MyAllocator\\phpsdk\\src\\Exception\\ApiException', $e);
     }
     if (!$caught) {
         $this->fail('should have thrown an exception');
     }
     /*
             // Arrival parameters
             $rsp = $obj->callApiWithParams(array(
                 'ArrivalStartDate' => '2014-11-01',
                 'ArrivalEndDate' => '2014-12-30'
             ));
             $this->assertTrue(isset($rsp['response']['body']['Bookings']));
     
             // Modification parameters
             $rsp = $obj->callApiWithParams(array(
                 'ModificationStartDate' => '2014-11-01',
                 'ModificationEndDate' => '2014-12-30'
             ));
             $this->assertTrue(isset($rsp['response']['body']['Bookings']));
     */
     // Creation parameters
     $rsp = $obj->callApiWithParams(array('ModificationStartDateTime' => '2015-01-01 00:00:00', 'ModificationEndDateTime' => '2015-07-30 00:00:00'));
     /*
             // Creation parameters
             $rsp = $obj->callApiWithParams(array(
                 'CreationStartDate' => '2015-01-01',
                 'CreationEndDate' => '2015-08-01',
                 'Options' => array(
                     'IncludeArchived' => 'true'
                 )
             ));
     */
     $this->assertTrue(isset($rsp['response']['body']['Bookings']));
 }