blob: 113476c63ed8398c3a1e4ac4e9a3380a3675ad38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
class passwordUtilTest extends PHPUnit\Framework\TestCase {
public function testCheck(): void {
$password = '1234567';
$ok = FreshRSS_password_Util::check($password);
$this->assertTrue($ok);
}
public function testCheckReturnsFalseIfEmpty(): void {
$password = '';
$ok = FreshRSS_password_Util::check($password);
$this->assertFalse($ok);
}
public function testCheckReturnsFalseIfLessThan7Characters(): void {
$password = '123456';
$ok = FreshRSS_password_Util::check($password);
$this->assertFalse($ok);
}
}
|