mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 09:47:25 +08:00
15 lines
286 B
PHP
15 lines
286 B
PHP
<?php
|
|
namespace yiiunit\extensions\bootstrap;
|
|
|
|
use yiiunit\TestCase;
|
|
|
|
/**
|
|
* BootstrapTestCase is the base class for all bootstrap extension test cases
|
|
*/
|
|
abstract class BootstrapTestCase extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->mockWebApplication();
|
|
}
|
|
} |