From 0daa9425b68f0035887c169aed2e92d1aca6fea2 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 25 Aug 2016 22:51:41 +0200 Subject: Delete UpgradeTest.php --- tests/Unit/Upgrade/UpgradeTest.php | 72 -------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 tests/Unit/Upgrade/UpgradeTest.php (limited to 'tests') diff --git a/tests/Unit/Upgrade/UpgradeTest.php b/tests/Unit/Upgrade/UpgradeTest.php deleted file mode 100644 index a3d473b63..000000000 --- a/tests/Unit/Upgrade/UpgradeTest.php +++ /dev/null @@ -1,72 +0,0 @@ -config = $this->getMockBuilder( - '\OCP\IConfig') - ->disableOriginalConstructor() - ->getMock(); - - $this->db = $this->getMockBuilder( - '\OCP\IDBConnection') - ->disableOriginalConstructor() - ->getMock(); - - $this->service = $this->getMockBuilder( - '\OCA\News\Service\ItemService') - ->disableOriginalConstructor() - ->getMock(); - - $this->upgrade = new Upgrade($this->config, $this->service, - $this->db, 'news'); - } - - public function testUpgrade() { - $this->config->expects($this->once()) - ->method('getAppValue') - ->with($this->equalTo('news'), $this->equalTo('installed_version')) - ->will($this->returnValue('8.9.0')); - - $this->service->expects($this->once()) - ->method('generateSearchIndices'); - - $this->upgrade->upgrade(); - } - - public function testNoUpgrade() { - $this->config->expects($this->once()) - ->method('getAppValue') - ->with($this->equalTo('news'), $this->equalTo('installed_version')) - ->will($this->returnValue('8.9.1')); - - $this->service->expects($this->never()) - ->method('generateSearchIndices'); - - $this->upgrade->upgrade(); - } - -} -- cgit v1.2.3