]> git.draconx.ca Git - gob-dx.git/blob - t/test-fooable.c
Expand the interface implementation test cases.
[gob-dx.git] / t / test-fooable.c
1 /*
2  *  Copyright © 2020 Nick Bowler
3  *
4  *  This program is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 #include "test-fooable.h"
19
20 GType test_fooable_get_type(void)
21 {
22         static const GTypeInfo info = { sizeof (TestFooableIface), 0, 0 };
23         static GType type = 0;
24
25         if (!type) {
26                 type = g_type_register_static(G_TYPE_INTERFACE,
27                                               "TestFooable", &info, 0);
28         }
29
30         return type;
31 }
32
33 int test_foo(GObject *go)
34 {
35         g_return_val_if_fail(TEST_IS_FOOABLE(go), -1);
36
37         return TEST_FOOABLE_GET_INTERFACE(go)->foo(go);
38 }