/
niceSOFT
/
cmocka
Обзор
Документация
Войти
/
niceSOFT
/
cmocka
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/test_string.c
38 строк
1 KB
Steffen Jaeckel
Include standard headers by default.
18 ноя 2025, 17:37
18 ноя 2025, 17:37
cbdd14a
Код
Авторство
О чём код?
/* * Copyright 2020 Andreas Schneider <asn@cryptomilk.org> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <cmocka.h> static void torture_string_equal(void **state) { (void)state; /* unused */ assert_string_equal("wurst", "wurst"); } static void torture_string_not_equal(void **state) { (void)state; /* unused */ assert_string_not_equal("wurst", "brot"); } int main(void) { const struct CMUnitTest tests[] = { cmocka_unit_test(torture_string_equal), cmocka_unit_test(torture_string_not_equal), }; return cmocka_run_group_tests(tests, NULL, NULL); }