public function testStakeholdersConnected_RemovesOne_TheOthersAreStillThere()
 {
     // Initial state
     // a-->b
     // a-->c
     // Remove a-->c, result should be
     $a_news = $this->newsData();
     $a = News::create($a_news);
     $b_stakeholder = $this->stakeholderData();
     $b = Stakeholder::create($b_stakeholder);
     $c_stakeholder = $this->stakeholderData();
     $c = Stakeholder::create($c_stakeholder);
     // Connect a-->b, a-->c
     $a_news['stakeholders_connected'] = [$b->id, $c->id];
     $response = $this->call('PUT', action('NewsController@update', [$a]), $a_news);
     $this->assertEquals(200, $response->status());
     //news a won't be connected with stakeholder c
     $a_news['stakeholders_connected'] = [$b->id];
     $response = $this->call('PUT', action('NewsController@update', [$a]), $a_news);
     // Check a-x->c
     $c_found = false;
     foreach ($a->connectedStakeholders as $sc) {
         if ($sc->id == $c->id) {
             $c_found = true;
         }
     }
     $this->assertFalse($c_found);
     // Check a-->c
     $b_found = false;
     foreach ($a->connectedStakeholders as $sc) {
         if ($sc->id == $b->id) {
             $b_found = true;
         }
     }
     $this->assertTrue($b_found);
     $c->delete();
     $b->delete();
     $a->delete();
 }