addOther() public method

public addOther ( BothTest $other )
$other BothTest
 /**
  * @throws \Exception
  *
  * @group both-x
  */
 public function testBothRelationshipFlush()
 {
     $this->clearDb();
     $other1 = new BothTest('a');
     $other2 = new BothTest('b');
     $other3 = new BothTest('c');
     $other1->addOther($other2);
     $other1->addOther($other3);
     $this->em->persist($other1);
     $this->em->flush();
     $this->assertGraphExist('(b:Both {name:"b"})-[:RELATES]-(a:Both {name:"a"})-[:RELATES]-(c:Both {name:"c"})');
 }