| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class YubikeyLoginFormTest extends SapphireTest |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @expectedException \LogicException |
||
| 16 | */ |
||
| 17 | public function testConstructClientID() |
||
| 18 | { |
||
| 19 | Environment::setEnv('YUBIAUTH_CLIENTID', ''); |
||
| 20 | YubikeyLoginForm::create(Controller::curr(), YubikeyMemberAuthenticator::class, 'test'); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @expectedException \LogicException |
||
| 25 | */ |
||
| 26 | public function testConstruct() |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testAuthenticatorName() |
||
| 37 | } |
||
| 38 | } |
||
| 39 |