Example #1
0
 /**
  * @depends test_add_donation
  */
 public function test_get_notes()
 {
     $donation_id = Charitable_Donation_Helper::create_donation(array('campaigns' => array(array('campaign_id' => $this->campaign_1->ID, 'campaign_name' => 'Test Campaign', 'amount' => 10)), 'note' => 'This is a note'));
     $donation = new Charitable_Donation($donation_id);
     $this->assertEquals('This is a note', $donation->get_notes());
 }