/** * Copyright (c) 2021 Dominic Masters * * This software is released under the MIT License. * https://opensource.org/licenses/MIT */ #include #include void setUp(void) { } void tearDown(void) { } void test_add_should_AddNumbersTogether(void) { TEST_ASSERT_EQUAL_INT32(32, 16+16); } int main() { UNITY_BEGIN(); RUN_TEST(test_add_should_AddNumbersTogether); return UNITY_END(); }