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