Merge "Revert "selenium: add new message banner test to user spec""
[lhc/web/wiklou.git] / tests / phpunit / includes / password / Pbkdf2PasswordTest.php
index 07cdab0..7e97ab1 100644 (file)
@@ -2,14 +2,19 @@
 
 /**
  * @group large
+ * @covers Pbkdf2Password
+ * @covers Password
+ * @covers ParameterizedPassword
+ * @requires function hash_pbkdf2
  */
 class Pbkdf2PasswordTest extends PasswordTestCase {
        protected function getTypeConfigs() {
                return [ 'pbkdf2' => [
-                       'class' => 'Pbkdf2Password',
+                       'class' => Pbkdf2Password::class,
                        'algo' => 'sha256',
                        'cost' => '10000',
                        'length' => '128',
+                       'use-hash-extension' => true,
                ] ];
        }