mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-09-03 05:41:38 +08:00
增加Log类测试
This commit is contained in:
48
tests/thinkphp/library/think/logTest.php
Normal file
48
tests/thinkphp/library/think/logTest.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Log测试
|
||||
* @author liu21st <liu21st@gmail.com>
|
||||
*/
|
||||
namespace tests\thinkphp\library\think;
|
||||
|
||||
use think\Log;
|
||||
|
||||
class logTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
public function testRecord(){
|
||||
Log::clear();
|
||||
Log::record('test');
|
||||
$this->assertEquals([['type'=>'log','msg'=>'test']], Log::getLog());
|
||||
Log::record('hello','info');
|
||||
$this->assertEquals([['type'=>'log','msg'=>'test'],['type'=>'info','msg'=>'hello']], Log::getLog());
|
||||
Log::clear();
|
||||
Log::info('test');
|
||||
$this->assertEquals([['type'=>'info','msg'=>'test']], Log::getLog());
|
||||
}
|
||||
|
||||
public function testSave(){
|
||||
Log::init(['type'=>'test']);
|
||||
Log::clear();
|
||||
Log::record('test');
|
||||
Log::record([1,2,3]);
|
||||
$this->assertTrue(Log::save());
|
||||
}
|
||||
|
||||
public function testWrite(){
|
||||
Log::init(['type'=>'test']);
|
||||
Log::clear();
|
||||
$this->assertTrue(Log::write('hello','info'));
|
||||
$this->assertTrue(Log::write([1,2,3],'log'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user