/**
  * Set up the mock to bootstrap the command tests
  */
 protected function setUp()
 {
     $this->generator_mock = TestFactory::mockGenerator();
     $this->process_mock = TestFactory::mockProcess();
     $this->request = new Request($this->generator_mock);
     parent::setUp();
 }
 /**
  *
  */
 protected function setUp()
 {
     parent::setUp();
     $this->filter = new Filter();
 }
 protected function setUp()
 {
     parent::setUp();
     $this->reflector = new ClassReflector();
 }
 protected function setUp()
 {
     parent::setUp();
     $this->setUpMocks();
     $this->stub = new ResponseParser($this->output_mock);
 }
 /**
  * Set up the mock to bootstrap the command tests
  */
 protected function setUp()
 {
     $this->setupMocks();
     $this->setupDefaultMockedValues();
     parent::setUp();
 }
 protected function setUp()
 {
     parent::setUp();
     $this->setUpMocks();
     $this->stub = new Composer($this->input_mock, $this->output_mock, $this->request_mock);
 }
 /**
  *
  */
 protected function setUp()
 {
     parent::setUp();
     $this->setUpMocks();
     $this->converter = new ConvertResponse($this->getter_mock);
 }
 protected function setUp()
 {
     parent::setUp();
     $this->setUpMocks();
     $this->filter_builder = new FilterBuilder($this->client_mock, $this->filter_mock);
 }
 protected function setUp()
 {
     parent::setUp();
     $this->value_object = new ValueObject(['key' => 'value']);
 }
 protected function setUp()
 {
     parent::setUp();
     $this->collection = new Collection(['key' => 'value']);
 }
 protected function setUp()
 {
     parent::setUp();
     $this->collection = new Collection();
 }
 protected function setUp()
 {
     parent::setUp();
     $this->app_mock = TestFactory::mockLaravelApp();
     $this->service_provider = new ServiceProvider($this->app_mock);
 }
 /**
  *
  */
 protected function setUp()
 {
     parent::setUp();
     $this->setUpMocks();
     $this->getter = new GetGetters($this->reflecter_mock);
 }