mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-12 14:40:46 -05:00
147 lines
3.6 KiB
C
147 lines
3.6 KiB
C
#include "test-framework/unity.h"
|
|
#include "darts.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
static void test_missed_target(void)
|
|
{
|
|
coordinate_t landing_position = { -9.0F, 9.0F };
|
|
uint8_t expected = 0;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_on_the_outer_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 0.0F, 10.0F };
|
|
uint8_t expected = 1;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_on_the_middle_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -5.0F, 0.0F };
|
|
uint8_t expected = 5;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_on_the_inner_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 0.0F, -1.0F };
|
|
uint8_t expected = 10;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_exactly_on_center(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 0.0F, 0.0F };
|
|
uint8_t expected = 10;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_near_the_center(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -0.1F, -0.1F };
|
|
uint8_t expected = 10;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_within_the_inner_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 0.7F, 0.7F };
|
|
uint8_t expected = 10;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_outside_the_inner_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 0.8F, -0.8F };
|
|
uint8_t expected = 5;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_within_the_middle_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -3.5F, 3.5F };
|
|
uint8_t expected = 5;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_outside_the_middle_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -3.6F, -3.6F };
|
|
uint8_t expected = 1;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_within_the_outer_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -7.0F, 7.0F };
|
|
uint8_t expected = 1;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_just_outside_the_outer_circle(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { 7.1F, -7.1F };
|
|
uint8_t expected = 0;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
static void test_asymmetric_position_between_the_inner_and_middle_circles(void)
|
|
{
|
|
|
|
coordinate_t landing_position = { -0.5F, -4.0F };
|
|
uint8_t expected = 5;
|
|
uint8_t actual = score(landing_position);
|
|
TEST_ASSERT_EQUAL_UINT8(expected, actual);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
UNITY_BEGIN();
|
|
|
|
RUN_TEST(test_missed_target);
|
|
RUN_TEST(test_on_the_outer_circle);
|
|
RUN_TEST(test_on_the_middle_circle);
|
|
RUN_TEST(test_on_the_inner_circle);
|
|
RUN_TEST(test_exactly_on_center);
|
|
RUN_TEST(test_near_the_center);
|
|
RUN_TEST(test_just_within_the_inner_circle);
|
|
RUN_TEST(test_just_outside_the_inner_circle);
|
|
RUN_TEST(test_just_within_the_middle_circle);
|
|
RUN_TEST(test_just_outside_the_middle_circle);
|
|
RUN_TEST(test_just_within_the_outer_circle);
|
|
RUN_TEST(test_just_outside_the_outer_circle);
|
|
RUN_TEST(test_asymmetric_position_between_the_inner_and_middle_circles);
|
|
|
|
return UNITY_END();
|
|
}
|