Ejemplo n.º 1
0
 /**
  * @testdox unit test: Test isTableReadOnly() returns correct state for read only
  * @covers Zend\Db\Sql\Select::isTableReadOnly
  */
 public function testIsTableReadOnly()
 {
     $select = new Select('foo');
     $this->assertTrue($select->isTableReadOnly());
     $select = new Select();
     $this->assertFalse($select->isTableReadOnly());
 }