Browse Source

Fixed test break.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
d9dd7292db
  1. 15
      tests/unit/framework/web/ResponseTest.php

15
tests/unit/framework/web/ResponseTest.php

@ -5,29 +5,16 @@ namespace yiiunit\framework\web;
use Yii;
use yii\helpers\StringHelper;
class MockResponse extends \yii\web\Response
{
public function send()
{
// does nothing to allow testing
}
}
/**
* @group web
*/
class ResponseTest extends \yiiunit\TestCase
{
/**
* @var MockResponse
*/
public $response;
protected function setUp()
{
parent::setUp();
$this->mockApplication();
$this->response = new MockResponse;
$this->response = new \yii\web\Response;
}
public function rightRanges()

Loading…
Cancel
Save