public function beforeSuite()
 {
     $this->session->start();
 }
 function it_should_start_session_on_beforeSuite_event(Session $session)
 {
     $session->start()->shouldBeCalled();
     $this->beforeSuite();
 }