getNote() public method

Note to the payer.
public getNote ( ) : string
return string
 /**
  * @depends testSerializationDeserialization
  * @param CancelNotification $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getSubject(), "TestSample");
     $this->assertEquals($obj->getNote(), "TestSample");
     $this->assertEquals($obj->getSendToMerchant(), true);
     $this->assertEquals($obj->getSendToPayer(), true);
 }