コード例 #1
0
ファイル: QueryTest.php プロジェクト: wookieb/query-object
 public function testRemovingCondition()
 {
     $this->object->addCondition($this->condition, self::CONDITION_NAME);
     $this->object->removeConditionByName(self::CONDITION_NAME);
     $this->assertSame([], $this->object->getConditions());
 }