add typeOf() and instanceOf()

This commit is contained in:
Rongsong Shen 2026-02-13 10:49:00 +08:00
parent dffbd936db
commit 6f6bb5b4e0
5 changed files with 69 additions and 10 deletions

View file

@ -14,6 +14,7 @@ void tearDown(void)
return;
}
extern void test_type(void);
extern void test_iter(void);
extern void test_invalid(void);
@ -23,6 +24,7 @@ int main(int argc, char* argv[])
{
UNITY_BEGIN();
TEST(test_type);
TEST(test_iter);
TEST(test_invalid);