summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-06 17:07:50 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-06 17:07:50 +0100
commit31975bfab7d8f94ce3d2f438caa50ac21547d655 (patch)
tree88d3f14c847073de06478d191b9109f68c4b7a84 /tests
parent620b1f5407ad57ff6aaf68e6e832bfa1407b1e58 (diff)
more tests
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/db/ItemMapperTest.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/integration/db/ItemMapperTest.php b/tests/integration/db/ItemMapperTest.php
index f0bac5ced..53ade4c79 100644
--- a/tests/integration/db/ItemMapperTest.php
+++ b/tests/integration/db/ItemMapperTest.php
@@ -50,6 +50,11 @@ class ItemMapperTest extends NewsIntegrationTest {
private function deleteReadOlderThanThreshold() {
$this->itemMapper->deleteReadOlderThanThreshold(1);
+ $this->itemMapper->find($this->items['a title1']->getId(),
+ $this->userId);
+ $this->itemMapper->find($this->items['a title2']->getId(),
+ $this->userId);
+ $this->itemMapper->find($this->items['a title3']->getId(), $this->userId);
$this->itemMapper->find($this->items['del3']->getId(), $this->userId);
$this->itemMapper->find($this->items['del4']->getId(), $this->userId);
}