Esempio n. 1
0
 protected function setUp()
 {
     $this->_collection = $this->getMock('MongoCollection', ['find', 'findOne', 'distinct', 'save', 'update', 'remove', 'drop'], [], '', false);
     $this->_model = $this->getMock('Magento\\Framework\\Cache\\Backend\\MongoDb', ['_getCollection'], [], '', false);
     $this->_model->expects($this->any())->method('_getCollection')->will($this->returnValue($this->_collection));
 }