Refine tabs; Add utils functions; Update document
This commit is contained in:
14
README.md
14
README.md
@@ -224,6 +224,20 @@ test_Ini_Param_Exceed();
|
||||
PutsTitle("Test: Ini Success");
|
||||
test_Ini_Success();
|
||||
|
||||
/*
|
||||
* INI 测试6:从INI文件获取值
|
||||
* 测试7种情况
|
||||
* 1. 从 ini 文件通过 section.key 获取值,section、key都存在
|
||||
* 2. 从 ini 文件通过 section.key 获取值,key不存在,使用默认值
|
||||
* 3. 从 ini 文件通过 section.key 获取值,section不存在,使用默认值
|
||||
* 4. 从 section 通过 key 获取值,key存在
|
||||
* 5. 从 section 通过 key 获取值,key不存在,使用默认值
|
||||
* 6. 从 ini 文件通过 section.key 获取整数,section、key都存在
|
||||
* 7. 从 ini 文件通过 section.key 获取整数,key不存在,使用默认值
|
||||
*/
|
||||
PutsTitle("Test: Get value from INI");
|
||||
test_Ini_Get_Value();
|
||||
|
||||
PutsTitle("Test completed!");
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user