Files
fast/thinkphp/tests/thinkphp/library/think/config/driver/jsonTest.php
xiadc c6a4e1f5f6 init
- 框架初始化
 - 安装插件
 - 修复PHP8.4报错
2025-04-19 17:21:20 +08:00

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();
}
}