Esempio n. 1
0
 public function testCreatePulseInGroup()
 {
     $myGroup = $this->pulseBoard->createGroup("Unicorn Group");
     $newPulse = $this->pulseBoard->createPulse("Feed the Unicorn", $this->userID, $myGroup->getId());
     $this->assertEquals($myGroup->getId(), $newPulse->getGroupId());
 }