Browse Source

Implement Multi find test

remotes/origin/Input_Handling
Sophia Weber 11 months ago
parent
commit
bd93f6dc7f
  1. 7
      test/test_inputHandling.c

7
test/test_inputHandling.c

@ -54,4 +54,11 @@ void test_inputHandling_findSubFunctionType(void)
TEST_ASSERT_TRUE(opSub == type);
}
void test_inputHandling_findMultiFunctionType(void)
{
op type = opNotSupported;
type = detectFunctionOperator("4*5", 3);
TEST_ASSERT_TRUE(opMult == type);
}
#endif // TEST
Loading…
Cancel
Save