1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-11-26 11:23:04 +03:00
Files
postfixadmin/tests/GeneratePasswordTest.php
David Goodwin 2f2730ffa0 add more tests
2018-04-29 21:53:46 +01:00

22 lines
342 B
PHP

<?php
require_once('common.php');
class GeneratePasswordTest extends PHPUnit_Framework_TestCase
{
public function testBasic()
{
$one = generate_password();
$two = generate_password();
$this->assertNotEquals($one, $two);
$this->assertNotEmpty($one);
$this->assertNotEmpty($two);
}
}