/**
  * @covers Core\Entity\StudentInGroups::setTrashed
  * @covers Core\Entity\StudentInGroups::getTrashed
  */
 public function testSetGetTrashed()
 {
     $trashedInt = 1;
     $this->studentInGroups->setTrashed($trashedInt);
     $this->assertEquals($trashedInt, $this->studentInGroups->getTrashed());
     $trashedString = "A";
     $this->studentInGroups->setTrashed($trashedString);
     $this->assertNotEquals($trashedString, $this->studentInGroups->getTrashed());
 }