fix: 修复测试用例断言宏使用不规范的问题

Signed-off-by: arvinzzz <zhaotianyu9@huawei.com>
This commit is contained in:
arvinzzz
2022-11-10 17:09:14 +08:00
parent 2f08268983
commit 27ed27eb89
10 changed files with 61 additions and 60 deletions

View File

@@ -679,7 +679,8 @@ LITE_TEST_CASE(PthreadFuncTestSuite, TestPthread009, Function | MediumTest | Lev
static VOID PthreadOnceFunc01(void)
{
g_testCount++;
ICUNIT_ASSERT_EQUAL_VOID(g_testCount, 1, g_testCount);
ICUNIT_TRACK_EQUAL(g_testCount, 1, g_testCount);
return;
}
/**