27 lines
427 B
C
27 lines
427 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include <unity.h>
|
|
#include <poker/card.h>
|
|
|
|
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();
|
|
} |