| 123456789101112131415161718192021222324252627 |
- <?php
- class passwordUtilTest extends PHPUnit\Framework\TestCase {
- public function testCheck() {
- $password = '1234567';
- $ok = FreshRSS_password_Util::check($password);
- $this->assertTrue($ok);
- }
- public function testCheckReturnsFalseIfEmpty() {
- $password = '';
- $ok = FreshRSS_password_Util::check($password);
- $this->assertFalse($ok);
- }
- public function testCheckReturnsFalseIfLessThan7Characters() {
- $password = '123456';
- $ok = FreshRSS_password_Util::check($password);
- $this->assertFalse($ok);
- }
- }
|