Inheritance: extends TestCase
 public function setUp()
 {
     parent::setUp();
     $this->business = $this->createBusiness();
     $this->vacancyManager = new VacancyManager($this->business);
     $this->vacancyParser = new VacancyParser();
 }
Example #2
0
 /**
  * Set Up
  */
 public function setUp()
 {
     parent::setUp();
     $translations = (require 'translations.php');
     app('config')->set('notifynder.translations', $translations);
     $this->translator = app('notifynder.translator');
 }
Example #3
0
 /**
  * Set up the sender.
  */
 public function setUp()
 {
     parent::setUp();
     // Set the model from the config
     app('config')->set('notifynder.notification_model', 'Fenos\\Notifynder\\Models\\Notification');
     $this->senders = app('notifynder.sender');
     $this->builder = app('notifynder.builder');
     $this->group = app('notifynder.group');
 }
 /**
  * Listen test listeners.
  */
 public function setUp()
 {
     parent::setUp();
     $this->dispatcher = app('notifynder');
     $this->laravelDispatcher = app('events');
     // Boot Listeners
     $this->dispatcher->bootListeners($this->listeners);
     // Create Users
     $this->to = $this->createUser();
     $this->from = $this->createUser();
     // Create Category
     $this->createCategory(['name' => 'activation']);
     $this->createCategory(['name' => 'confirmation']);
 }
 /**
  * SetUp Tests
  */
 public function setUp()
 {
     parent::setUp();
     $this->notificationRepo = app('notifynder.notification.repository');
 }
Example #6
0
 /**
  * Set Up Test
  */
 public function setUp()
 {
     parent::setUp();
     $this->notifynder = app('notifynder');
 }
Example #7
0
 /**
  * Set Up Test.
  */
 public function setUp()
 {
     parent::setUp();
     $this->notification = app('notifynder.notification');
 }
 public function setUp()
 {
     parent::setUp();
     $this->repository = new Repository();
 }
 public function setUp()
 {
     parent::setUp();
     $this->getDBCreator()->dropDB(true)->createDB();
 }
 /**
  * SetUp Tests
  */
 public function setUp()
 {
     parent::setUp();
     $this->visitorRepository = app('visitor.repository');
 }
 /**
  * Set Up Test
  */
 public function setUp()
 {
     parent::setUp();
     $this->group = app('notifynder.group.repository');
 }
 /**
  * SetUp Tests
  */
 public function setUp()
 {
     parent::setUp();
     $this->visitorRepository = app('visitor.repository');
     app('config')->set('session.driver', 'array');
 }
 public function setUp()
 {
     parent::setUp();
     $this->vacancyParser = new VacancyParser();
 }
 public function setUp()
 {
     parent::setUp();
     $this->vacancyTemplateBuilder = new VacancyTemplateBuilder();
 }
 public function setUp()
 {
     parent::setUp();
     $this->contactPresenter = $this->createContactPresenter();
 }
 /**
  * Set Up Test
  */
 public function setUp()
 {
     parent::setUp();
     $this->categoryGroup = app('notifynder.group.category');
 }
 /**
  * SetUp Tests
  */
 public function setUp()
 {
     parent::setUp();
     $this->categoryRepo = app('notifynder.category.repository');
 }
Example #18
0
 /**
  * Set Up Test
  */
 public function setUp()
 {
     parent::setUp();
     $this->notification = app('notifynder.notification');
     $this->user = Factory::create(User::class);
 }
Example #19
0
 public function setUp()
 {
     parent::setUp();
     $this->timetable = new Timetable();
 }
 public function setUp()
 {
     parent::setUp();
     $this->appointmentPresenter = $this->createAppointmentPresenter();
 }
 public function setUp()
 {
     parent::setUp();
     $this->businessPresenter = $this->createBusinessPresenter();
 }
 public function setUp()
 {
     parent::setUp();
     $this->arrangeScenario();
 }
 public function setUp()
 {
     parent::setUp();
     $this->arrangeFixture();
     $this->concierge = new Concierge();
 }