/**
  * Tears down the test case, deleting created entities.
  */
 protected function tearDown()
 {
     $testUtils = new TestUtils($this->user, $this->version);
     // It's only important to delete the campaign.
     if (isset($this->campaignId)) {
         $testUtils->DeleteCampaign($this->campaignId);
     }
 }