getPrimaryKey() public method

public getPrimaryKey ( $table )
 public function testGetPrimaryKey()
 {
     $this->pdo->exec('CREATE TABLE test_table ( id INTEGER PRIMARY KEY, name TEXT )');
     $db_util = new SqliteUtil($this->phactory);
     $pk = $db_util->getPrimaryKey('test_table');
     $this->assertEquals('id', $pk);
 }