public function testTransactionCommitBeforeAnyQueries()
 {
     //There is a validation that we can start transaction
     //before any queries and connection object will establish
     //connection automatically (lazy connection)
     $this->connection->start();
     $this->connection->execute('SELECT 1');
     $this->connection->commit();
     $this->assertTrue(true);
 }