|
@ -323,3 +323,35 @@ void test_init_field_at_2_0_expected_WAY(void) |
|
|
} |
|
|
} |
|
|
free(field); |
|
|
free(field); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void test_init_field_at_2_3_expected_WAY(void) |
|
|
|
|
|
{ |
|
|
|
|
|
/* arrange */ |
|
|
|
|
|
unsigned short x = 2; |
|
|
|
|
|
unsigned short y = 3; |
|
|
|
|
|
|
|
|
|
|
|
unsigned short len_x = 5, len_y = 5; |
|
|
|
|
|
Field_State **field; |
|
|
|
|
|
|
|
|
|
|
|
field = malloc(len_x * sizeof *field); |
|
|
|
|
|
for (int c_index = 0; c_index < len_x; c_index++){ |
|
|
|
|
|
field[c_index] = malloc(len_y * sizeof field[c_index]); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
field[x][y] = WALL; |
|
|
|
|
|
|
|
|
|
|
|
Field_State expected = WAY; |
|
|
|
|
|
|
|
|
|
|
|
/* act */ |
|
|
|
|
|
init_field(field, len_x, len_y); |
|
|
|
|
|
|
|
|
|
|
|
/* assert */ |
|
|
|
|
|
TEST_ASSERT_TRUE(field[x][y] == expected); |
|
|
|
|
|
|
|
|
|
|
|
for (int c_index = 0; c_index < len_x; c_index++) |
|
|
|
|
|
{ |
|
|
|
|
|
free(field[c_index]); |
|
|
|
|
|
} |
|
|
|
|
|
free(field); |
|
|
|
|
|
} |
|
|
|
|
|
|