Exemplo n.º 1
0
 public function testRemoveNonexistentTranslation()
 {
     $translation = $this->createTranslationMock();
     $translation->expects($this->any())->method('getLocale')->will($this->returnValue($locale = 'fr_FR'));
     $translation->expects($this->never())->method('setTranslatable');
     $this->translatable->removeTranslation($translation);
 }