Example #1
0
 /**
  * @return void
  */
 public function testFieldByConditions()
 {
     $is = $this->Posts->fieldByConditions('title', ['title LIKE' => 'S%']);
     $this->assertSame('Second Post', $is);
     $is = $this->Posts->fieldByConditions('title', ['title LIKE' => '%'], ['order' => ['title' => 'DESC']]);
     $this->assertSame('Third Post', $is);
 }