コード例 #1
0
ファイル: PdoMysqlTest.php プロジェクト: Maksold/platform
 public function testGetPlainSql()
 {
     $recordString = PdoMysql::getPlainSql();
     $this->assertTrue(strpos($recordString, 'FULLTEXT') > 0);
 }
コード例 #2
0
 public function testCreateIndexes()
 {
     $this->connection->expects($this->once())->method('query')->with(PdoMysql::getPlainSql());
     $this->indexManager->createIndexes();
 }