Example #1
0
 /**
  * Tests that the default auto-commit mode for connections can be set in the configuration container.
  *
  * @group DBAL-81
  */
 public function testSetsDefaultConnectionAutoCommitMode()
 {
     $this->config->setAutoCommit(false);
     $this->assertFalse($this->config->getAutoCommit());
     $this->config->setAutoCommit(0);
     $this->assertFalse($this->config->getAutoCommit());
 }