add attr_get/attr_set

This commit is contained in:
Rongsong Shen 2026-02-26 10:59:56 +08:00
parent 724c740909
commit f66de93483
6 changed files with 176 additions and 0 deletions

View file

@ -17,6 +17,7 @@ void tearDown(void)
extern void test_type(void);
extern void test_iter(void);
extern void test_invalid(void);
extern void test_attr(void);
#define TEST(x) x()
@ -27,6 +28,7 @@ int main(int argc, char* argv[])
TEST(test_type);
TEST(test_iter);
TEST(test_invalid);
TEST(test_attr);
return UNITY_END();
}