Piwik\Plugins\CoreUpdater\Test\UpdateCommunicationTest::test_sendNotificationIfUpdateAvailable PHP Method

test_sendNotificationIfUpdateAvailable() public method

public test_sendNotificationIfUpdateAvailable ( $latestVersion, $lastSentVersion, $expects, $expectedLastSentVersion )
    public function test_sendNotificationIfUpdateAvailable($latestVersion, $lastSentVersion, $expects, $expectedLastSentVersion)
    {
        $this->setLatestVersion($latestVersion);
        $this->setLastSentVersion($lastSentVersion);
        $mock = $this->getCommunicationMock(array('sendNotifications'));
        $mock->expects($expects)->method('sendNotifications');
        $mock->sendNotificationIfUpdateAvailable();
        $this->assertEquals($expectedLastSentVersion, $this->getLastSentVersion());
    }