예제 #1
0
파일: ConnectionTest.php 프로젝트: hybr/jpm
 public function testLoggerCallable()
 {
     $connection = new Connection($this->server, $this->dbName);
     $connection->setLoggerCallable($loggerCallable = array($this, 'log'));
     $this->assertSame($loggerCallable, $connection->getLoggerCallable());
 }