예제 #1
0
 public function test_get_suspended_at_date()
 {
     $this->assertNull($this->entity->getSuspendedTill()->getDate());
     $this->entity->suspend();
     $this->assertInstanceOf('Maatwebsite\\Usher\\Contracts\\Users\\Embeddables\\SuspendedTill', $this->entity->getSuspendedTill());
 }