예제 #1
0
파일: MessageTest.php 프로젝트: sqmk/pushy
 /**
  * Test: Get/Set sound
  *
  * @covers \Pushy\Message::getSound
  * @covers \Pushy\Message::setSound
  */
 public function testGetSetSound()
 {
     $this->message->setSound($this->mockSound);
     $this->assertEquals($this->mockSound, $this->message->getSound());
 }