コード例 #1
0
ファイル: FactoryTest.php プロジェクト: phalcon/incubator
 /**
  * @expectedException \Phalcon\Db\Exception
  * @expectedExceptionMessage Database adapter Drizzle is not supported
  */
 public function testLoadUnsupportedAdapter()
 {
     $this->testable['adapter'] = 'drizzle';
     AdaptersFactory::load($this->testable);
 }