Merge "Add urlencode for URL encoding of lang values"
[lhc/web/wiklou.git] / tests / phpunit / includes / password / Pbkdf2PasswordTest.php
index 07cdab0..ff069cd 100644 (file)
@@ -2,6 +2,10 @@
 
 /**
  * @group large
+ * @covers Pbkdf2Password
+ * @covers Password
+ * @covers ParameterizedPassword
+ * @requires function hash_pbkdf2
  */
 class Pbkdf2PasswordTest extends PasswordTestCase {
        protected function getTypeConfigs() {
@@ -10,6 +14,7 @@ class Pbkdf2PasswordTest extends PasswordTestCase {
                        'algo' => 'sha256',
                        'cost' => '10000',
                        'length' => '128',
+                       'use-hash-extension' => true,
                ] ];
        }