You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
583 B

  1. #include "unity.h"
  2. #include "../src/calculatorGetUserInput.c"
  3. // Note:
  4. /* This Function may or may not be implemented in actual program, even if it is merged to the main branch.
  5. If it is temporarily not included in the main Program, then this has a role in future Development of the Project */
  6. void setUp(void)
  7. {
  8. }
  9. void tearDown(void)
  10. {
  11. }
  12. void test_calculatorGetUserInput_NeedToImplement(void)
  13. {
  14. int actual, expected; //Arrange
  15. expected = 1;
  16. actual = allowOnly(); //Act
  17. TEST_ASSERT_EQUAL_INT(expected, actual);//Assert
  18. }