tests: Add test_basics.
[platform/upstream/cmocka.git] / tests / test_basics.c
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 void setup(void **state) {
26     int *answer = malloc(sizeof(int));
27
28     assert_non_null(answer);
29     *answer = 42;
30
31     *state = answer;
32 }
33
34 static void teardown(void **state) {
35     free(*state);
36 }
37
38 /* A test case that does nothing and succeeds. */
39 static void null_test_success(void **state) {
40     (void) state;
41 }
42
43 /* A test case that does check if an int is equal. */
44 static void int_test_success(void **state) {
45     int *answer = *state;
46
47     assert_int_equal(*answer, 42);
48 }
49
50
51 int main(void) {
52     const UnitTest tests[] = {
53         unit_test(null_test_success),
54         unit_test_setup_teardown(int_test_success, setup, teardown),
55     };
56
57     return run_tests(tests);
58 }