123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Integration test for Magento\Cookie\Model\Config\Backend\Lifetime
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cookie\Model\Config\Backend;
- class LifetimeTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * Method is not publicly accessible, so it must be called through parent
- *
- * @expectedException \Magento\Framework\Exception\LocalizedException
- * @expectedExceptionMessage Invalid cookie lifetime: must be numeric
- */
- public function testBeforeSaveException()
- {
- $invalidCookieLifetime = 'invalid lifetime';
- $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- /** @var \Magento\Cookie\Model\Config\Backend\Lifetime $model */
- $model = $objectManager->create(\Magento\Cookie\Model\Config\Backend\Lifetime::class);
- $model->setValue($invalidCookieLifetime);
- $model->save();
- }
- }
|