コード例 #1
0
ファイル: TwitterTest.php プロジェクト: stunti/zf2
 /**
  * @expectedException \Zend\Service\Twitter\Exception
  */
 public function testOverloadingGetShouldthrowExceptionWithInvalidFunction()
 {
     $twitter = new Service\Twitter();
     $return = $twitter->foo();
 }
コード例 #2
0
ファイル: TwitterTest.php プロジェクト: alab1001101/zf2
 public function testOverloadingGetShouldthrowExceptionWithInvalidFunction()
 {
     $this->setExpectedException('Zend\\Service\\Twitter\\Exception');
     $twitter = new Service\Twitter();
     $return = $twitter->foo();
 }