Example #1
0
 /**
  * @covers \Magento\Captcha\Model\DefaultModel::getWord
  */
 public function testGetWord()
 {
     $this->assertEquals($this->_object->getWord(), 'AbCdEf5');
     $this->_object->getSession()->setData(['user_create_word' => ['data' => 'AbCdEf5', 'expires' => time() - 360]]);
     $this->assertNull($this->_object->getWord());
 }