addConditionsToQuery adds "=" by default
This commit is contained in:
@ -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');
|
||||
|
Reference in New Issue
Block a user