コード例 #1
0
 protected function runTest()
 {
     foreach ($this->classesWith as $className) {
         $this->currentTestClass = $className;
         parent::runTest();
     }
 }
コード例 #2
0
ファイル: TestCase.php プロジェクト: iw-reload/iw
 public function setUp()
 {
     parent::setUp();
     /* @var $doctrine \common\components\doctrine\DoctrineComponent */
     $doctrine = \Yii::$app->get('doctrine');
     $this->em = $doctrine->getEntityManager();
 }
コード例 #3
0
 protected function setup()
 {
     parent::setUp();
     Yii::$app->set('workflowSource', ['class' => 'raoul2000\\workflow\\source\\file\\WorkflowFileSource', 'definitionLoader' => ['class' => 'raoul2000\\workflow\\source\\file\\PhpClassLoader', 'namespace' => 'tests\\codeception\\unit\\models']]);
     Yii::$app->set('status_accessor', ['class' => 'tests\\codeception\\unit\\models\\StatusAccessor07']);
     $this->statusAccessor = Yii::$app->get('status_accessor');
     $this->statusAccessor->resetCallCounters();
     StatusAccessor07::$instanceCount = 1;
 }
コード例 #4
0
 public function __get($name)
 {
     $getter = 'get' . $name;
     if (method_exists($this, $getter)) {
         return $this->{$getter}();
     } else {
         return parent::__get($name);
     }
 }
コード例 #5
0
 protected function setup()
 {
     parent::setUp();
     Yii::$app->set('workflowFactory', ['class' => 'fproject\\workflow\\core\\ArrayWorkflowItemFactory', 'workflowSourceNamespace' => 'tests\\codeception\\unit\\models']);
     Yii::$app->set('status_accessor', ['class' => 'tests\\codeception\\unit\\models\\StatusAccessor07']);
     $this->statusAccessor = Yii::$app->get('status_accessor');
     $this->statusAccessor->resetCallCounters();
     StatusAccessor07::$instanceCount = 1;
 }
コード例 #6
0
 /** @inheritdoc */
 protected function setUp()
 {
     parent::setUp();
     $model = $model = new FakeNewsModel();
     $model->name = 'News 1';
     $model->file = ['src' => '/images/file.pdf'];
     $model->images = [['src' => '/images/image1.png'], ['src' => '/images/image2.png']];
     $model->save();
     $this->model = $model;
 }
コード例 #7
0
ファイル: ImageTest.php プロジェクト: jumper423/yii2-images
 protected function setUp()
 {
     parent::setUp();
     $config = ArrayHelper::merge(require Yii::getAlias($this->appConfig), ['components' => ['db' => ['class' => '\\yii\\db\\Connection', 'dsn' => 'sqlite::memory:']], 'modules' => ['jumper423Store' => ['class' => 'jumper423\\yii2images\\Module']]]);
     $this->mockApplication($config);
     $columns = ['id' => 'pk', 'name' => 'string'];
     Yii::$app->getDb()->createCommand()->createTable('test_image_behavior', $columns)->execute();
     $columns = ['id' => 'pk', 'filePath' => 'VARCHAR(400) NOT NULL', 'itemId' => 'int(20) NOT NULL', 'isMain' => 'int(1)', 'modelName' => 'VARCHAR(150) NOT NULL', 'urlAlias' => 'VARCHAR(400) NOT NULL'];
     Yii::$app->getDb()->createCommand()->createTable('image', $columns)->execute();
     /*vfsStream::setup('root');
       vfsStream::setup('root/Cache');*/
     $module = Yii::$app->getModule('jumper423Store');
     //$module->imagesStorePath = vfsStream::url('root/Store');
     //$module->imagesCachePath = vfsStream::url('root/Cache');
     $module->imagesStorePath = Yii::getAlias('@app') . '/tests/unit/data/imgStore';
     $module->imagesCachePath = Yii::getAlias('@app') . '/tests/unit/data/imgCache';
     $this->model = new ActiveRecordImage();
     $this->model->name = 'testName';
     $this->model->save();
 }
コード例 #8
0
 protected function setUp()
 {
     parent::setUp();
     $this->src = new ArrayWorkflowItemFactory();
 }
コード例 #9
0
 protected function tearDown()
 {
     Yii::$app->user->logout();
     parent::tearDown();
 }
コード例 #10
0
 /**
  * @Override
  */
 protected function _after()
 {
     parent::_after();
     // TODO: Change the autogenerated stub
 }
コード例 #11
0
ファイル: AdminTest.php プロジェクト: kazachka/photo-yii-site
 public function setUp()
 {
     parent::setUp();
     $module = new Module(1);
 }
コード例 #12
0
 public function setUp()
 {
     parent::setUp();
     $this->manager = new ModelManager();
 }
コード例 #13
0
 protected function setup()
 {
     parent::setUp();
     Yii::$app->set('wfIdAccessor', ['class' => 'tests\\codeception\\unit\\models\\IdAccessor09']);
 }
コード例 #14
0
 public function setUp()
 {
     parent::setUp();
     $this->model = new LoginForm(['scenario' => LoginForm::SCENARIO_DEFAULT]);
 }
コード例 #15
0
 protected function setUp()
 {
     Config::clearMap();
     parent::setUp();
 }
コード例 #16
0
 protected function setUp()
 {
     parent::setUp();
     $this->loadFixtures(['user']);
 }
コード例 #17
0
ファイル: BanditTest.php プロジェクト: bazilio91/yii2-bandit
 protected function tearDown()
 {
     $this->redis->executeCommand('FLUSHDB');
     parent::tearDown();
 }
コード例 #18
0
 protected function tearDown()
 {
     $this->model->delete();
     parent::tearDown();
 }
コード例 #19
0
 public function tearDown()
 {
     Yii::$app->getDb()->createCommand()->delete('test_auto_timestamp')->execute();
     Yii::$app->getDb()->close();
     parent::tearDown();
 }
コード例 #20
0
 protected function tearDown()
 {
     parent::tearDown();
 }
コード例 #21
0
 protected function setUp()
 {
     parent::setUp();
     $this->src = new WorkflowFileSource();
 }
コード例 #22
0
ファイル: UserTest.php プロジェクト: Sheriyev/G5-CRM
 protected function setUp()
 {
     parent::setUp();
     // uncomment the following to load fixtures for user table
     //$this->loadFixtures(['user']);
 }
コード例 #23
0
 protected function setUp()
 {
     parent::setUp();
     $this->model = new DynamicModel(['number']);
     $this->model->addRule('number', MobileNumberValidator::className());
 }
コード例 #24
0
 public function setUp()
 {
     parent::setUp();
     $this->mockApplication();
     $this->schema = 'file://' . __DIR__ . '/../../../data/json_schemas/car.json';
 }
コード例 #25
0
 protected function setup()
 {
     parent::setUp();
     Item01::deleteAll();
     Yii::$app->set('workflowFactory', ['class' => 'fproject\\workflow\\core\\ArrayWorkflowItemFactory', 'workflowSourceNamespace' => 'tests\\codeception\\unit\\models']);
 }
コード例 #26
0
 /**
  * @inheritdoc
  */
 protected function tearDown()
 {
     $this->factory->workflowSourceNamespace = null;
     parent::tearDown();
 }
コード例 #27
0
 protected function tearDown()
 {
     unlink($this->getMessageFile());
     parent::tearDown();
 }
コード例 #28
0
ファイル: BehaviorTest.php プロジェクト: mazurva/yii2-eav
 public function tearDown()
 {
     //data\Post::deleteAll();
     parent::tearDown();
 }
コード例 #29
0
 public function tearDown()
 {
     Yii::$app->cache->flush();
     parent::tearDown();
 }
コード例 #30
0
ファイル: UserTest.php プロジェクト: phundament/app
 protected function setUp()
 {
     parent::setUp();
 }