-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.c
57 lines (39 loc) · 1.02 KB
/
test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "arbiter.h"
#include <stdio.h>
#include <stdlib.h>
#include "pascal.h"
static void test_less_num() {
double* x = NULL;
double* y = NULL;
int num_data_points =
load_data("tests/load_data/data_less_num.dat", &x, &y);
arbiter_assert(num_data_points == 1);
free(x);
free(y);
}
static void test_more_num() {
double* x = NULL;
double* y = NULL;
int num_data_points =
load_data("tests/load_data/data_more_num.dat", &x, &y);
arbiter_assert(num_data_points == 2);
free(x);
free(y);
}
static void test_load() {
double* x = NULL;
double* y = NULL;
int num_data_points = load_data("tests/load_data/data.dat", &x, &y);
arbiter_assert(num_data_points == 2);
arbiter_assert(x[0] == 1.0);
arbiter_assert((int)(x[1] * 10) == 13);
arbiter_assert((int)(y[0] * 10) == 20);
arbiter_assert((int)(y[1] * 10) == 23);
free(x);
free(y);
}
#define NUM_TESTS 3
int main() {
void (*tests[NUM_TESTS])() = {test_load, test_less_num, test_more_num};
arbiter_run_tests(NUM_TESTS, "load_data", tests);
}