示例#1
0
 /**
  * Test method for the <tt>getApplicationsGroup()</tt> and <tt>setApplicationsGroup($applicationsGroup)</tt>
  * functions.
  */
 public function testGetSetApplicationsGroup()
 {
     $pushwoosh = new Pushwoosh();
     $this->assertNull($pushwoosh->getApplicationsGroup());
     $this->assertSame($pushwoosh, $pushwoosh->setApplicationsGroup('APPLICATIONS_GROUP'));
     $this->assertEquals('APPLICATIONS_GROUP', $pushwoosh->getApplicationsGroup());
 }