public function testTwoStepVerificationCode()
 {
     // Given
     $user = new BaseUser();
     // When
     $user->setTwoStepVerificationCode('123456');
     // Then
     $this->assertEquals('123456', $user->getTwoStepVerificationCode(), 'Should return the two step verification code');
 }