Example #1
0
 protected function setUp()
 {
     $this->mathRandomMock = $this->getMock('Magento\\Framework\\Math\\Random', [], [], '', false);
     $methods = ['setData', 'getData'];
     $this->sessionMock = $this->getMock('Magento\\Framework\\Session\\SessionManager', $methods, [], '', false);
     $this->escaperMock = $this->getMock('Magento\\Framework\\Escaper', [], [], '', false);
     $this->escaperMock->expects($this->any())->method('escapeHtmlAttr')->willReturnArgument(0);
     $this->formKey = new FormKey($this->mathRandomMock, $this->sessionMock, $this->escaperMock);
 }