Commit 0310935e by Qiang Xue

fixed test breaks.

parent 41685a24
......@@ -6,7 +6,7 @@ use Yii;
use yii\elasticsearch\Connection;
use yiiunit\TestCase;
Yii::setAlias('@yii/elasticsearch', __DIR__ . '/../../../../extensions/elasticsearch');
Yii::setAlias('@yii/elasticsearch', __DIR__ . '/../../../../extensions/yii/elasticsearch');
/**
* ElasticSearchTestCase is the base class for all elasticsearch related test cases
......@@ -48,4 +48,4 @@ class ElasticSearchTestCase extends TestCase
}
return $db;
}
}
\ No newline at end of file
}
......@@ -57,7 +57,7 @@ class MongoDbTestCase extends TestCase
protected static function loadClassMap()
{
$baseNameSpace = 'yii/mongodb';
$basePath = realpath(__DIR__. '/../../../../extensions/mongodb');
$basePath = realpath(__DIR__. '/../../../../extensions/yii/mongodb');
$files = FileHelper::findFiles($basePath);
foreach ($files as $file) {
$classRelativePath = str_replace($basePath, '', $file);
......@@ -146,4 +146,4 @@ class MongoDbTestCase extends TestCase
$buildInfo = $connection->getDatabase()->executeCommand(['buildinfo' => true]);
return $buildInfo['version'];
}
}
\ No newline at end of file
}
......@@ -6,7 +6,7 @@ use yii\redis\Cache;
use yii\redis\Connection;
use yiiunit\framework\caching\CacheTestCase;
Yii::setAlias('@yii/redis', __DIR__ . '/../../../../extensions/redis');
Yii::setAlias('@yii/redis', __DIR__ . '/../../../../extensions/yii/redis');
/**
* Class for testing redis cache backend
......@@ -98,4 +98,4 @@ class RedisCacheTest extends CacheTestCase
$this->assertTrue($cache->get($key)===$data);
}
}
\ No newline at end of file
}
......@@ -6,7 +6,7 @@ use Yii;
use yii\redis\Connection;
use yiiunit\TestCase;
Yii::setAlias('@yii/redis', __DIR__ . '/../../../../extensions/redis');
Yii::setAlias('@yii/redis', __DIR__ . '/../../../../extensions/yii/redis');
/**
* RedisTestCase is the base class for all redis related test cases
......@@ -45,4 +45,4 @@ abstract class RedisTestCase extends TestCase
}
return $db;
}
}
\ No newline at end of file
}
......@@ -72,7 +72,7 @@ class SphinxTestCase extends TestCase
protected static function loadClassMap()
{
$baseNameSpace = 'yii/sphinx';
$basePath = realpath(__DIR__. '/../../../../extensions/sphinx');
$basePath = realpath(__DIR__. '/../../../../extensions/yii/sphinx');
$files = FileHelper::findFiles($basePath);
foreach ($files as $file) {
$classRelativePath = str_replace($basePath, '', $file);
......@@ -151,4 +151,4 @@ class SphinxTestCase extends TestCase
$this->db = $db;
return $db;
}
}
\ No newline at end of file
}
......@@ -6,7 +6,7 @@ use Yii;
use yii\swiftmailer\Mailer;
use yiiunit\VendorTestCase;
Yii::setAlias('@yii/swiftmailer', __DIR__ . '/../../../../extensions/swiftmailer');
Yii::setAlias('@yii/swiftmailer', __DIR__ . '/../../../../extensions/yii/swiftmailer');
/**
* @group vendor
......@@ -121,4 +121,4 @@ class MailerTest extends VendorTestCase
$mailer = new Mailer();
$this->assertTrue(is_object($mailer->getSwiftMailer()), 'Unable to get Swift mailer instance!');
}
}
\ No newline at end of file
}
......@@ -8,7 +8,7 @@ use yii\swiftmailer\Mailer;
use yii\swiftmailer\Message;
use yiiunit\VendorTestCase;
Yii::setAlias('@yii/swiftmailer', __DIR__ . '/../../../../extensions/swiftmailer');
Yii::setAlias('@yii/swiftmailer', __DIR__ . '/../../../../extensions/yii/swiftmailer');
/**
* @group vendor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment