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