Example #1
0
 /**
  * @covers Paradox\Client::executeTransaction
  */
 public function testExecuteTransaction()
 {
     $action = "function () { return 'hello'; }";
     $result = $this->client->executeTransaction($action);
     $this->assertEquals('hello', $result, "The result does not match");
 }