Refine tabs; Add utils functions; Update document

This commit is contained in:
2023-03-17 11:37:53 +08:00
parent 14d2e6e38c
commit c4b311e980
4 changed files with 161 additions and 21 deletions

View File

@@ -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!");
```