예제 #1
0
 public function testInWhere()
 {
     $this->object->inWhere("abc, def");
     $result = $this->object->getDbComponent()->getWherePart();
     $compare = " IN (abc, def)";
     $this->assertEquals($compare, $result);
 }