2
#include <SimpleTypeSystem.h>
3
#include "test_macros.h"
5
int test_utils (void) {
8
test_case (round_up (5, 2) == 6, "Expected outcome");
10
test_case (round_up (7, 4) == 8, "Expected outcome");
12
test_case (round_up (5, 4) == 8, "Expected outcome");
14
test_case (round_up (14, 5) == 15, "Expected outcome");
16
test_case (round_up (11, 5) == 15, "Expected outcome");
18
test_case (round_up (2,2) == 2, "Expected outcome");