addConditionsToQuery adds "=" by default

This commit is contained in:
2022-05-16 10:01:16 +01:00
parent 804694c0cc
commit f6792e5053
2 changed files with 5 additions and 5 deletions

View File

@ -23,9 +23,10 @@ class UtilsTest extends UnitTestCase{
->willReturn([$term_entity]);
$this->assertEquals($this->utils->getTidByName('foo', 'bar'), 3);
}
public function testAddConditionToQueryExceptsIfNotGivenArraysOf3Things():void {
$this->expectException(\RuntimeException::class);
$this->utils->addConditionsToQuery($this->query, [["1","2"], ["1"]]);
public function testAddConditionToQueryAddsEqualsIfNoOperatorProvided():void {
$this->query->expects($this->exactly(1))->method('condition')->with("1", "2", "=");
$this->utils->addConditionsToQuery($this->query, [["1","2"]]);
}
public function testAddConditionToQueryAddsTheRightAmountOfConditions():void {
$this->query->expects($this->exactly(4))->method('condition');