37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?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 tests\thinkphp\library\think\config\ConfigInitTrait;
|
|
use think\config;
|
|
|
|
class jsonTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
use ConfigInitTrait;
|
|
|
|
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();
|
|
}
|
|
}
|