wiki.techinc.nl/tests/phpunit/unit/includes/password/Pbkdf2PasswordUsingOpenSSLTest.php
Umherirrender f27c2433bb tests: Use namespaced classes (2)
Changes to the use statements done automatically via script
Addition of missing use statement done manually

Change-Id: I4ff4d0c10820dc2a3b8419b4115fadf81a76f7a2
2024-06-13 23:21:02 +02:00

14 lines
368 B
PHP

<?php
use MediaWiki\Password\Pbkdf2PasswordUsingOpenSSL;
/**
* @group large
* @covers \MediaWiki\Password\AbstractPbkdf2Password
* @covers \MediaWiki\Password\Pbkdf2PasswordUsingOpenSSL
*/
class Pbkdf2PasswordUsingOpenSSLTest extends Pbkdf2PasswordTestCase {
protected static function getPbkdf2PasswordClass() {
return Pbkdf2PasswordUsingOpenSSL::class;
}
}