예제 #1
0
파일: ResultTest.php 프로젝트: smasty/neevo
 public function testInnerJoin()
 {
     $this->result->innerJoin($s = 'foo', $c = 'c');
     $this->assertEquals(array(array($s, $c, Manager::JOIN_INNER)), $this->result->getJoins());
 }