mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-06 23:02:48 +08:00
Apply fixes from StyleCI
This commit is contained in:
@@ -1,34 +1,34 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Test File Log
|
||||
*/
|
||||
namespace tests\thinkphp\library\think\log\driver;
|
||||
|
||||
use think\Log;
|
||||
|
||||
class fileTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
protected function setUp()
|
||||
{
|
||||
Log::init(['type' => 'file']);
|
||||
}
|
||||
|
||||
public function testRecord()
|
||||
{
|
||||
$record_msg = 'record';
|
||||
Log::record($record_msg, 'notice');
|
||||
$logs = Log::getLog();
|
||||
|
||||
$this->assertNotFalse(array_search($record_msg, $logs['notice']));
|
||||
}
|
||||
}
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Test File Log
|
||||
*/
|
||||
namespace tests\thinkphp\library\think\log\driver;
|
||||
|
||||
use think\Log;
|
||||
|
||||
class fileTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
protected function setUp()
|
||||
{
|
||||
Log::init(['type' => 'file']);
|
||||
}
|
||||
|
||||
public function testRecord()
|
||||
{
|
||||
$record_msg = 'record';
|
||||
Log::record($record_msg, 'notice');
|
||||
$logs = Log::getLog();
|
||||
|
||||
$this->assertNotFalse(array_search($record_msg, $logs['notice']));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user