public function testIsSuspended()
 {
     $this->institution->setAsSuspended();
     $this->assertTrue($this->institution->isSuspended(), 'Is suspended should be true after setting as Suspended');
     $this->institution->setAsApproved();
     $this->assertFalse($this->institution->isSuspended(), 'Is suspended should be false after setting as Approved');
     $this->institution->setAsUnapproved();
     $this->assertFalse($this->institution->isSuspended(), 'Is suspended should be false after setting as Unapproved');
     $this->institution->setAsActive();
     $this->assertFalse($this->institution->isSuspended(), 'Is suspended should be false after setting as Active');
     $this->institution->setAsInactive();
     $this->assertFalse($this->institution->isSuspended(), 'Is suspended should be false after setting as Inactive');
 }