Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OTPTest.php
Go to the documentation of this file.
1 <?php
7 
9 
10 class OTPTest extends \PHPUnit\Framework\TestCase
11 {
12  public function testHandleResult()
13  {
14  $OTPHandler = new OTP();
15  $this->assertFalse($OTPHandler->handleResponse([]));
16  $expectedOtp = 123;
17  $this->assertEquals($expectedOtp, $OTPHandler->handleResponse(['otp' => $expectedOtp]));
18  }
19 }