OpenVPN
test_basics.c
Go to the documentation of this file.
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /* Use the unit test allocators */
18 #define UNIT_TESTING 1
19 
20 #include <stdarg.h>
21 #include <stddef.h>
22 #include <setjmp.h>
23 #include <cmocka.h>
24 
25 static int setup(void **state) {
26  int *answer = malloc(sizeof(int));
27 
28  assert_non_null(answer);
29  *answer = 42;
30 
31  *state = answer;
32 
33  return 0;
34 }
35 
36 static int teardown(void **state) {
37  free(*state);
38 
39  return 0;
40 }
41 
42 /* A test case that does nothing and succeeds. */
43 static void null_test_success(void **state) {
44  (void) state;
45 }
46 
47 /* A test case that does check if an int is equal. */
48 static void int_test_success(void **state) {
49  int *answer = *state;
50 
51  assert_int_equal(*answer, 42);
52 }
53 
54 
55 int main(void) {
56  const struct CMUnitTest tests[] = {
59  };
60 
61  return cmocka_run_group_tests(tests, NULL, NULL);
62 }
#define assert_non_null(c)
Definition: cmocka.h:1102
#define cmocka_unit_test(f)
Initializes a CMUnitTest structure.
Definition: cmocka.h:1653
static void null_test_success(void **state)
Definition: test_basics.c:43
static void int_test_success(void **state)
Definition: test_basics.c:48
int main(void)
Definition: test_basics.c:55
#define malloc
Definition: cmocka.c:1795
#define cmocka_unit_test_setup_teardown(f, setup, teardown)
Initialize an array of CMUnitTest structures with a setup function for a test and a teardown function...
Definition: cmocka.h:1665
#define cmocka_run_group_tests(group_tests, group_setup, group_teardown)
Definition: cmocka.h:1749
static int teardown(void **state)
Definition: test_basics.c:36
#define free
Definition: cmocka.c:1850
static int setup(void **state)
Definition: test_basics.c:25
#define assert_int_equal(a, b)
Definition: cmocka.h:1174