|
@ -13,4 +13,12 @@ void test_gets_WithMinLengthAndMaxLength(void) { |
|
|
fakeInput = input; |
|
|
fakeInput = input; |
|
|
char *actual = gets("", &minLength, &maxLength); |
|
|
char *actual = gets("", &minLength, &maxLength); |
|
|
TEST_ASSERT_EQUAL_CHAR_ARRAY("dddd", actual, strlen(actual)); |
|
|
TEST_ASSERT_EQUAL_CHAR_ARRAY("dddd", actual, strlen(actual)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void test_gethd_WithMinAndMax(void) { |
|
|
|
|
|
short min = 10; |
|
|
|
|
|
short max = 100; |
|
|
|
|
|
char *input[] = {"sdf", "1", "101", "50"}; |
|
|
|
|
|
fakeInput = input; |
|
|
|
|
|
TEST_ASSERT_EQUAL_INT64(50, gethd("", &min, &max)); |
|
|
} |
|
|
} |