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); } }