relation = new Relation(); } public function testConstructor(): void { $this->assertInstanceOf(Collection::class, $this->relation->getChilds()); $this->assertInstanceOf(Collection::class, $this->relation->getParents()); $this->expectException(\TypeError::class); $this->relation->getSource(); } }