blob: ea92c3441068f5ad184c4213a475b7348c5ba382 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "./pke-test-dummy.h"
int pke_test_dummy_001() {
return 0;
}
struct pke_test_group *pke_test_dummy_get_group() {
static struct pke_test tests[1] = {
{
.title = "test 001",
.func = pke_test_dummy_001,
.expected_result = 0,
}
};
static struct pke_test_group group = {0};
group.title = "dummy test";
group.n_tests = 1;
group.tests = &tests[0];
return &group;
}
|