Example #1
0
 public function testToString()
 {
     $sort = new Sort();
     $expected = 'id-asc';
     $sort->setField('id')->setDirection('asc');
     $this->assertSame($expected, $sort->toString());
 }