增加单元测试

This commit is contained in:
amc
2016-06-30 11:05:03 +08:00
parent 441b482594
commit 2a7f46af00
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1 @@
{"jsonstring":1}

View File

@@ -0,0 +1,33 @@
<?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>
// +----------------------------------------------------------------------
/**
* Xml配置测试
* @author 7IN0SAN9 <me@7in0.me>
*/
namespace tests\thinkphp\library\think\config\driver;
use think\config;
class jsonTest extends \PHPUnit_Framework_TestCase
{
public function testParse()
{
Config::parse('{"jsonstring":1}', 'json');
$this->assertEquals(1, Config::get('jsonstring'));
Config::reset();
Config::parse(__DIR__ . '/fixtures/config.json');
$this->assertTrue(Config::has('jsonstring'));
$this->assertEquals(1, Config::get('jsonstring'));
Config::reset();
}
}