コード例 #1
0
ファイル: ServiceTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Service::register($this->di);
     $this->service = $this->di->getShared('service');
     $this->service->setTestCase($this);
 }
コード例 #2
0
ファイル: CliTestCase.php プロジェクト: phwoolcon/phwoolcon
 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();
 }
コード例 #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']);
 }
コード例 #4
0
 public function setUp()
 {
     parent::setUp();
     Config::set('counter.default', 'rds');
     Counter::register($this->di);
     $db = Db::connection();
     $db->tableExists('counter') and $db->dropTable('counter');
 }
コード例 #5
0
ファイル: UserModelTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Db::clearMetadata();
     $this->di->set(User::class, TestUserModel::class);
     $this->di->set(UserProfile::class, TestUserProfileModel::class);
     $this->getUserModelInstance()->delete();
 }
コード例 #6
0
ファイル: TestCase.php プロジェクト: phwoolcon/payment
 public function setUp()
 {
     parent::setUp();
     Processor::register($this->di);
     new TestOrderModel();
     new TestOrderDataModel();
     $this->processor = $this->di->getShared('payment');
 }
コード例 #7
0
ファイル: RouterTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Router::register($this->di);
     View::register($this->di);
 }
コード例 #8
0
ファイル: SecurityTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
 }
コード例 #9
0
ファイル: I18nTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     I18n::clearCache();
 }
コード例 #10
0
ファイル: QueueTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Queue::register($this->di);
 }
コード例 #11
0
 public function setUp()
 {
     parent::setUp();
     Config::set('counter.default', 'auto');
     Counter::register($this->di);
 }
コード例 #12
0
ファイル: CacheTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Cache::register($this->di);
     Cache::flush();
 }
コード例 #13
0
ファイル: CryptTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Crypt::reset();
 }
コード例 #14
0
ファイル: DbTest.php プロジェクト: phwoolcon/phwoolcon
 public function setUp()
 {
     parent::setUp();
     Db::connection()->dropTable('config');
     Config::register($this->di);
 }