@ -422,4 +422,71 @@ void test_calculate_mines_HeightWidthFinal(void)
/* assert */
TEST_ASSERT_EQUAL_INT(expected, result);
}
void test_generateRandomNumber_withinValidRange(void)
{
/* arrange */
/* act */
int result = generateRandomNumber(1, 100);
TEST_ASSERT_TRUE(result >= 1 && result <= 100);
#endif // TEST