]> sigrok.org Git - libsigrok.git/blob - tests/check_device.c
unit tests: Add a test case for sr_dev_inst_user_new().
[libsigrok.git] / tests / check_device.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <string.h>
22 #include <check.h>
23 #include "../include/libsigrok/libsigrok.h"
24 #include "lib.h"
25
26 START_TEST(test_user_new)
27 {
28         struct sr_dev_inst *sdi;
29
30         sdi = sr_dev_inst_user_new("Vendor", "Model", "Version");
31
32         fail_unless(sdi != NULL, "sr_dev_inst_user_new() failed.");
33
34         fail_unless(!strcmp("Vendor", sr_dev_inst_vendor_get(sdi)));
35         fail_unless(!strcmp("Model", sr_dev_inst_model_get(sdi)));
36         fail_unless(!strcmp("Version", sr_dev_inst_version_get(sdi)));
37 }
38 END_TEST
39
40 Suite *suite_device(void)
41 {
42         Suite *s;
43         TCase *tc;
44
45         s = suite_create("device");
46
47         tc = tcase_create("sr_dev_inst_user_new");
48         tcase_add_test(tc, test_user_new);
49         suite_add_tcase(s, tc);
50
51         return s;
52 }