// +---------------------------------------------------------------------- /** * app类测试 * @author Haotong Lin */ namespace tests\thinkphp\library\think; class appTest extends \PHPUnit_Framework_TestCase { public function testRun() { \think\App::run(); $this->expectOutputString('

:)

欢迎使用 ThinkPHP5

'); // todo... } }