aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mirum-agent/test.c')
-rw-r--r--cmd/mirum-agent/test.c22+0 −22
1 files changed, 0 insertions, 22 deletions
diff --git a/cmd/mirum-agent/test.c b/cmd/mirum-agent/test.c
deleted file mode 100644
--- a/cmd/mirum-agent/test.c
+++ /dev/null
@@ -1,22 +0,0 @@
-// SPDX-FileCopyrightText: 2026 Nikolay Govorov
-// SPDX-License-Identifier: AGPL-3.0-or-later
-
-#include "unity.h"
-
-#include "mirum-agent.h"
-
-void setUp(void) {}
-void tearDown(void) {}
-
-// Smoke test: the public entry point links and runs without crashing.
-// Substantive suites (TLV decode, channel state machine) land with that
-// code, exercising mirum-agent.h the same way.
-static void test_mirum_init_runs(void) {
- mirum_init();
-}
-
-int main(void) {
- UNITY_BEGIN();
- RUN_TEST(test_mirum_init_runs);
- return UNITY_END();
-}