Exemplo n.º 1
0
 /**
  * @test
  */
 public function setTagsForObjectStorageContainingTagSetsTags()
 {
     $tag = new \Lobcher\Simpleblog\Domain\Model\Tag();
     $objectStorageHoldingExactlyOneTags = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
     $objectStorageHoldingExactlyOneTags->attach($tag);
     $this->subject->setTags($objectStorageHoldingExactlyOneTags);
     $this->assertAttributeEquals($objectStorageHoldingExactlyOneTags, 'tags', $this->subject);
 }