示例#1
0
 public function testSimpleDef()
 {
     $param = "activo";
     $this->filtro->agregar_campo_simple($param, 'estado = %s', 'A');
     $this->agregar_parametro_request($param, null);
     $this->assertEquals('estado = A', trim($this->filtro->get_sql_where()));
 }