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