Exemplo n.º 1
0
 public function testToStringFail()
 {
     $criterion = new Criterion();
     $expected = 'and-make-eq-value-Audi';
     $criterion->setLogic('and')->setKey('make')->setOperand('eq')->setType('value')->setValue('audi');
     $this->assertNotSame($expected, $criterion->toString());
 }