Exemple #1
0
 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());
 }