parents = new class() implements ParentsAttributInterface { use ParentsAttribut; }; } public function testConstructor(): void { $this->expectException(\TypeError::class); $this->parents->getParents(); } public function testAccessors(): void { $parents = new ArrayCollection(); $this->assertNull($this->parents->setParents($parents)); $this->assertEquals($parents, $this->parents->getParents()); } }