test: 接入 CTest 并添加基础 runtime 测试

This commit is contained in:
2026-03-14 13:55:09 +08:00
parent 6ec4d8422f
commit 58d1b09203
4 changed files with 45 additions and 1 deletions

10
tests/main.c Normal file
View File

@@ -0,0 +1,10 @@
#include "core/runtime.h"
int main(void) {
wm_runtime_t runtime = {0};
wm_runtime_init(&runtime);
wm_runtime_shutdown(&runtime);
return 0;
}