public function testGetPopulatedWithProperties()
 {
     $allMembers = new All();
     $allMembers->setOrder('order-direction')->setPage(3);
     $this->assertEquals(['order' => 'order-direction', 'page' => 3], $allMembers->getPopulated());
 }
Example #2
0
 public function testGetRequestType()
 {
     $options = new All();
     $this->assertEquals('get', $options->getRequestType());
 }