Example #1
0
 public function testSameValueAs()
 {
     $query_local = new Query();
     $this->assertFalse($query_local->sameValueAs($this->query));
     $query_local->set($this->query);
     $this->assertTrue($query_local->sameValueAs($this->query));
 }