コード例 #1
0
ファイル: AuthTest.php プロジェクト: swco/appnexusapi
 /**
  * @expectedException        \InvalidArgumentException
  * @expectedExceptionMessage `setClient()` must be called before `getClient()`
  */
 public function testExceptionThrownWhenClientNotSet()
 {
     $auth = new Auth();
     $auth->getClient();
 }