123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Cache\Test\Unit;
- class ConfigTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\Cache\Config\Data|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_storage;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\Cache\Config
- */
- protected $_model;
- protected function setUp()
- {
- $this->_storage = $this->createPartialMock(\Magento\Framework\Cache\Config\Data::class, ['get']);
- $this->_model = new \Magento\Framework\Cache\Config($this->_storage);
- }
- public function testGetTypes()
- {
- $this->_storage->expects(
- $this->once()
- )->method(
- 'get'
- )->with(
- 'types',
- []
- )->will(
- $this->returnValue(['val1', 'val2'])
- );
- $result = $this->_model->getTypes();
- $this->assertCount(2, $result);
- }
- public function testGetType()
- {
- $this->_storage->expects(
- $this->once()
- )->method(
- 'get'
- )->with(
- 'types/someType',
- []
- )->will(
- $this->returnValue(['someTypeValue'])
- );
- $result = $this->_model->getType('someType');
- $this->assertCount(1, $result);
- }
- }
|