예제 #1
0
파일: TableTest.php 프로젝트: seytar/psx
 /**
  * @expectedException \PSX\Exception
  */
 public function testAddConnectionInvalidColumn()
 {
     $table = new Table($this->connection, 'foo_table', array());
     $table->addConnection('bar', 'bar_table');
 }