blob: d1e210b68bd70ea3abd27e804200ac0e1616d2e2 (
plain) (
blame)
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
28
29
30
31
|
<?php
/**
* this file contains tests for text.php
*
* @package test.util
*/
/** required, it is the file under test */
require_once('include/text.php');
/**
* TestCase for the texter
*
* @author ken restivo
* @package test.util
*/
class TextTest extends PHPUnit_Framework_TestCase {
public function testGoodEmail() {
$this->assertTrue(valid_email_regex('ken@spaz.org'));
}
public function testGoodEmail2() {
$this->assertTrue(valid_email_regex('ken@restivo.org'));
}
public function testGoodEmail3() {
$this->assertTrue(valid_email_regex('nobody@hubzilla.com'));
}
public function testBadEmail() {
$this->assertFalse(valid_email_regex('nobody!uses!these!any.more'));
}
}
|