예제 #1
0
 public function test_unset_a_suspend()
 {
     $this->entity->suspend();
     $this->assertTrue($this->entity->isSuspended());
     $this->entity->unsetSuspended();
     $this->assertFalse($this->entity->isSuspended());
 }