Browse Source

Implement Add find test

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

7
test/test_inputHandling.c

@ -40,4 +40,11 @@ void test_inputHandling_deleteAllOtherCharacter(void)
TEST_ASSERT_EQUAL_STRING("HalloWelt", halloWelt4); TEST_ASSERT_EQUAL_STRING("HalloWelt", halloWelt4);
} }
void test_inputHandling_findAddFunctionType(void)
{
op type = opNotSupported;
type = detectFunctionOperator("4+5", 3);
TEST_ASSERT_TRUE(opAdd == type);
}
#endif // TEST #endif // TEST
Loading…
Cancel
Save