コード例 #1
0
ファイル: ValidTest.php プロジェクト: pombredanne/tuleap
 function testValueEmpty()
 {
     $v = new Valid();
     $this->assertTrue($v->isValueEmpty(''));
     $this->assertTrue($v->isValueEmpty(false));
     $this->assertTrue($v->isValueEmpty(null));
     $this->assertFalse($v->isValueEmpty(' '));
 }