aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test_gensvm_grid.c
blob: 6979c5b5f43fff358ac13fa5a648e46138573879 (plain)
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
/**
 * @file test_gensvm_grid.c
 * @author Gertjan van den Burg
 * @date May, 2016
 * @brief Unit tests for gensvm_grid.c functions
 */

#include "minunit.h"
#include "gensvm_grid.h"

char *test_init_free_grid()
{
	struct GenGrid *grid = gensvm_init_grid();
	gensvm_free_grid(grid);
	return NULL;
}

char *all_tests()
{
	mu_suite_start();
	mu_run_test(test_init_free_grid);

	return NULL;
}

RUN_TESTS(all_tests);