From 4d45e4f1ba339a0fc452e3ad0ea548b96324292b Mon Sep 17 00:00:00 2001 From: Sophia Weber Date: Sun, 28 Jan 2024 13:34:35 +0100 Subject: [PATCH] Implement nothing to find test --- test/test_inputHandling.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/test_inputHandling.c b/test/test_inputHandling.c index 7f8364f..75c5725 100644 --- a/test/test_inputHandling.c +++ b/test/test_inputHandling.c @@ -78,4 +78,11 @@ void test_inputHandling_findExpFunctionType(void) TEST_ASSERT_TRUE(opExp == type); } +void test_inputHandling_findEmptyFunctionType(void) +{ + op type = opNotSupported; + type = detectFunctionOperator(halloWelt, 10); + TEST_ASSERT_TRUE(opEmpty == type); +} + #endif // TEST