コード例 #1
0
ファイル: CaseCommentTest.php プロジェクト: antrampa/crm
 public function testCase()
 {
     $this->assertNull($this->comment->getCase());
     $value = $this->getMockBuilder('OroCRM\\Bundle\\CaseBundle\\Entity\\CaseEntity')->disableOriginalConstructor()->getMock();
     $this->assertEquals($this->comment, $this->comment->setCase($value));
     $this->assertEquals($value, $this->comment->getCase());
 }