Example #1
0
 public function tearDown()
 {
     $this->appendRemoteCoverage();
     $this->service->stop();
     $this->service->stop('old');
     parent::tearDown();
 }
Example #2
0
 public function setUp()
 {
     parent::setUp();
     $_SERVER['PHWOOLCON_MIGRATION_PATH'] = TEST_ROOT_PATH . '/bin/migrations';
     $this->cli = Cli::register($this->di);
     $this->cli->setAutoExit(false);
     $this->output = new BufferedOutput();
 }
Example #3
0
 public function setUp()
 {
     parent::setUp();
     $this->configTrait = new TestConfigTrait();
     Config::set('white_listed', ['_white_list' => ['foo'], 'foo' => 'bar', 'hello' => 'world']);
     Config::set('black_listed', ['_black_list' => ['foo'], 'foo' => 'bar', 'hello' => 'world']);
     Config::set('protected', ['foo' => 'bar', 'hello' => 'world']);
 }
Example #4
0
 public function setUp()
 {
     parent::setUp();
     Processor::register($this->di);
     new TestOrderModel();
     new TestOrderDataModel();
     $this->processor = $this->di->getShared('payment');
 }
Example #5
0
 public function setUp()
 {
     parent::setUp();
     Db::clearMetadata();
     $this->di->set(User::class, TestUserModel::class);
     $this->di->set(UserProfile::class, TestUserProfileModel::class);
     $this->getUserModelInstance()->delete();
 }
Example #6
0
 public function tearDown()
 {
     unset($_SERVER['REQUEST_METHOD']);
     parent::tearDown();
 }
Example #7
0
 public function setUp()
 {
     parent::setUp();
 }
Example #8
0
 public function setUp()
 {
     parent::setUp();
     View::register($this->di);
 }
Example #9
0
 public function setUp()
 {
     parent::setUp();
     I18n::clearCache();
 }
Example #10
0
 public function tearDown()
 {
     Config::set('counter.default', 'auto');
     parent::tearDown();
 }
Example #11
0
 public function setUp()
 {
     parent::setUp();
     Cache::register($this->di);
     Cache::flush();
 }
Example #12
0
 public function setUp()
 {
     parent::setUp();
     Crypt::reset();
 }
Example #13
0
 public function setUp()
 {
     parent::setUp();
     Db::connection()->dropTable('config');
     Config::register($this->di);
 }