Sha256: 6eb17f1dc750e6c53b7f5315187159a59075e4d1e5757afd1e84c1a6e3d208a0
Contents?: true
Size: 604 Bytes
Versions: 2
Compression:
Stored size: 604 Bytes
Contents
/* ========================================================================= Ceedling - Test-Centered Build System for C ThrowTheSwitch.org Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT ========================================================================= */ #include "unity.h" #include "example_file.h" void setUp(void) {} void tearDown(void) {} void test_add_numbers_adds_numbers(void) { TEST_ASSERT_EQUAL_INT(2, add_numbers(1,1)); } void test_add_numbers_will_fail(void) { TEST_ASSERT_EQUAL_INT(2, add_numbers(2,2)); }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | assets/test_example_file.c |
ceedling-1.0.0 | assets/test_example_file.c |