Example #1
0
 public function testWith()
 {
     $rowset = $this->table->with(["reftest"], array("another_test_id=" => 2));
     $this->assertCount(1, $rowset);
     $this->assertEquals(array("id" => 2, "created" => new \pq\DateTime("today"), "counter" => 0, "number" => 0, "data" => "today", "list" => array(0, 1, 2), "prop" => null), $rowset->current()->getData());
 }