mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 11:08:34 +08:00
10 lines
201 B
C++
10 lines
201 B
C++
|
#include "base/utils.h"
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
TEST(Utils, basic) {
|
||
|
char str[32];
|
||
|
|
||
|
ASSERT_EQ(ftk_atoi("100"), 100);
|
||
|
ASSERT_EQ(strcmp(ftk_itoa(str, sizeof(str), ftk_atoi("100")), "100"), 0);
|
||
|
}
|