Beispiel #1
0
 /** @test */
 public function should_throw_exception_when_non_member_attempts_to_create_thread()
 {
     $this->setExpectedException('Exception');
     $group = new Group(GroupId::generate(), 'Cribbb');
     $thread = $group->startNewThread($this->user, 'Hello World');
 }