/**
  * @test
  */
 public function setChildsForObjectStorageContainingCategorySetsChilds()
 {
     $child = new \Bjr\BjrLend\Domain\Model\Category();
     $objectStorageHoldingExactlyOneChilds = new \TYPO3\CMS\Extbase\Persistence\Generic\ObjectStorage();
     $objectStorageHoldingExactlyOneChilds->attach($child);
     $this->fixture->setChilds($objectStorageHoldingExactlyOneChilds);
     $this->assertSame($objectStorageHoldingExactlyOneChilds, $this->fixture->getChilds());
 }