From 3b1f0e60194aea021433031bd62b3173b912d712 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 30 Mar 2015 21:18:24 +0200 Subject: [PATCH] Fix unit test --- tests/lib/share/share.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index cd79abd2056..523f7b379a0 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -1178,6 +1178,7 @@ class Test_Share extends \Test\TestCase { $qb->method('andWhere')->will($this->returnSelf()); $qb->method('select')->will($this->returnSelf()); $qb->method('from')->will($this->returnSelf()); + $qb->method('setParameter')->will($this->returnSelf()); $qb->method('expr')->willReturn($ex); $ret = $this->getMockBuilder('\Doctrine\DBAL\Driver\ResultStatement') @@ -1232,6 +1233,7 @@ class Test_Share extends \Test\TestCase { $qb->method('set')->will($this->returnSelf()); $qb->method('where')->will($this->returnSelf()); $qb->method('andWhere')->will($this->returnSelf()); + $qb->method('setParameter')->will($this->returnSelf()); $qb->method('expr')->willReturn($ex); $ret = $this->getMockBuilder('\Doctrine\DBAL\Driver\ResultStatement') @@ -1284,6 +1286,7 @@ class Test_Share extends \Test\TestCase { $qb->method('andWhere')->will($this->returnSelf()); $qb->method('select')->will($this->returnSelf()); $qb->method('from')->will($this->returnSelf()); + $qb->method('setParameter')->will($this->returnSelf()); $qb->method('expr')->willReturn($ex); $ret = $this->getMockBuilder('\Doctrine\DBAL\Driver\ResultStatement') @@ -1336,6 +1339,7 @@ class Test_Share extends \Test\TestCase { $qb->method('andWhere')->will($this->returnSelf()); $qb->method('select')->will($this->returnSelf()); $qb->method('from')->will($this->returnSelf()); + $qb->method('setParameter')->will($this->returnSelf()); $qb->method('expr')->willReturn($ex); $ret = $this->getMockBuilder('\Doctrine\DBAL\Driver\ResultStatement') -- 2.39.5