Example #1
0
 public function testSetsRequestMethodFromOptionsArray()
 {
     $options = array('requestMethod' => OAuth::GET);
     $consumer = new Consumer($options);
     $this->assertEquals(OAuth::GET, $consumer->getRequestMethod());
 }