Package Management
test_utils.h
Go to the documentation of this file.
1 
9 #ifndef TEST_UTILS_H
10 #define TEST_UTILS_H
11 
12 #include "acutest.h"
13 #include "utils.h"
14 
15 void test_utils(void)
16 {
17  TEST_CHECK(argMin(-1212,3) == 0);
18  TEST_CHECK(argMin(3, -1212) == 1);
19  TEST_CHECK(argMin(-1212,-1212) == 1);
20 }
21 
22 
23 #endif
General Utilities for C language.