Example #1
0
 /**
  * @covers Paradox\Client::transactionStarted
  */
 public function testTransactionStarted()
 {
     $this->assertFalse($this->client->transactionStarted(), "There should be no active transaction");
     $this->client->begin();
     $this->assertTrue($this->client->transactionStarted(), "There should be an active transaction");
 }