コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testIsEmpty()
 {
     $text = new Text();
     $this->assertTrue($text->isEmpty());
     $text = new Text(' ');
     $this->assertFalse($text->isEmpty());
 }