Exemplo n.º 1
0
 /**
  *  fixed by dfa (Dominik Fässler <*****@*****.**>)
  */
 function testNormalIteration()
 {
     $m1 = new Model1();
     $m1->doQuery();
     $a1 = $m1->a;
     $m1->next();
     $a2 = $m1->a;
     $this->assertNotEquals($a1, $a2);
 }