| 1 | <?php |
||
| 15 | |||
| 16 | class PhoneVerificationEventTest extends TestCase |
||
| 17 | { |
||
| 18 | public function testPhoneVerificationEventTest() |
||
| 19 | { |
||
| 20 | $phoneVerification = $this->createMock('LoginCidadao\PhoneVerificationBundle\Model\PhoneVerificationInterface'); |
||
| 21 | $providedCode = '123456'; |
||
| 22 | |||
| 23 | $event = new PhoneVerificationEvent($phoneVerification, $providedCode); |
||
| 24 | |||
| 25 | $this->assertEquals($phoneVerification, $event->getPhoneVerification()); |
||
| 26 | $this->assertEquals($providedCode, $event->getProvidedCode()); |
||
| 27 | } |
||
| 28 | } |
||
| 29 |