for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Firesphere\YubiAuth\Tests;
use Firesphere\YubiAuth\Forms\YubikeyForm;
use SilverStripe\Dev\SapphireTest;
class YubikeyFormTest extends SapphireTest
{
public function testAuthenticatorName()
$form = YubikeyForm::create();
$this->assertEquals('Yubikey authentication', $form->getAuthenticatorName());
}