You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
#include "../src/arithmeticDivision.h"
|
|
#include "unity.h"
|
|
#include "limits.h"
|
|
|
|
void setUp(void) {
|
|
// set stuff up here
|
|
}
|
|
|
|
void tearDown(void) {
|
|
// clean stuff up here
|
|
}
|
|
|
|
|
|
void test_arithmeticDivision_numberdividedbynumberequalsnumber(void) {
|
|
int expectedResult = 2;
|
|
int* result;
|
|
result = division_integer(14, 7);
|
|
TEST_ASSERT_EQUAL_INT(expectedResult, *result);
|
|
}
|