public function testSendCampaignToContact()
 {
     $contact = array('Email' => '*****@*****.**', 'AudienceType' => 'B2B', 'OptInType' => 'Single', 'EmailType' => 'Html', 'Notes' => 'This is an API test contact');
     $fields = array('FIRSTNAME' => 'John', 'LASTNAME' => 'Test');
     //$this->object->AddContactToAddressBook($contact, $fields, $this->addressBookId);
     $foundContact = $this->object->GetContactByEmail($contact['Email']);
     $result = $this->object->SendCampaignToContact($this->campaignId, $foundContact->ID, date('Y-m-d\\TH:i:s', strtotime('+5 minutes')));
     $this->assertTrue($result);
 }