コード例 #1
0
ファイル: CaseCommentTest.php プロジェクト: antrampa/crm
 public function testPublic()
 {
     $this->assertFalse($this->comment->isPublic());
     $this->assertEquals($this->comment, $this->comment->setPublic(true));
     $this->assertTrue($this->comment->isPublic());
 }