summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/ItemMapperTest.php
diff options
context:
space:
mode:
authoranoy <anoymouserver+github@mailbox.org>2021-07-17 19:33:36 +0200
committeranoy <anoymouserver@users.noreply.github.com>2021-07-17 20:31:29 +0200
commited066a812914b84c8f0c44e0e6be432638a3e038 (patch)
tree8311efdc0706f0ae53625bf2cb41cb2e2be85d03 /tests/Unit/Db/ItemMapperTest.php
parent6515a297d8f54594b77b95dd4bcf245544fdb21e (diff)
adapt tests to QBMapper changes in NC22
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
Diffstat (limited to 'tests/Unit/Db/ItemMapperTest.php')
-rw-r--r--tests/Unit/Db/ItemMapperTest.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/Unit/Db/ItemMapperTest.php b/tests/Unit/Db/ItemMapperTest.php
index 15ebbac1a..2d831e784 100644
--- a/tests/Unit/Db/ItemMapperTest.php
+++ b/tests/Unit/Db/ItemMapperTest.php
@@ -107,8 +107,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(3))
->method('fetch')
@@ -168,8 +168,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(3))
->method('fetch')
@@ -213,8 +213,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(3))
->method('fetch')
@@ -258,8 +258,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(3))
->method('fetch')
@@ -310,8 +310,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(2))
->method('fetch')
@@ -351,8 +351,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(2))
->method('fetch')
@@ -397,8 +397,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(2))
->method('fetch')
@@ -458,8 +458,8 @@ class ItemMapperTest extends MapperTestUtility
->will($this->returnSelf());
$this->builder->expects($this->once())
- ->method('execute')
- ->will($this->returnValue($this->cursor));
+ ->method('executeQuery')
+ ->willReturn($this->cursor);
$this->cursor->expects($this->exactly(2))
->method('fetch')