Exemplo n.º 1
0
 public function testGetIdxName()
 {
     $tableName = 'table';
     $fields = ['field'];
     $indexType = 'index_type';
     $expectedIdxName = 'idxName';
     $this->connection->expects($this->once())->method('getIndexName')->with($tableName, $fields, $indexType)->will($this->returnValue($expectedIdxName));
     $this->assertEquals('idxName', $this->setup->getIdxName($tableName, $fields, $indexType));
 }