def: Add missing cmocka_set_message_output symbol
[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 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[] = {
57         cmocka_unit_test(null_test_success),
58         cmocka_unit_test_setup_teardown(int_test_success, setup, teardown),
59     };
60
61     return cmocka_run_group_tests(tests, NULL, NULL);
62 }