1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  *  Copyright (C) 2007  Kouhei Sutou <kou@cozmixng.org>
4  *
5  *  This library is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Lesser General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 
20 #ifndef __CUT_TEST_CONTAINER_H__
21 #define __CUT_TEST_CONTAINER_H__
22 
23 #include <glib-object.h>
24 
25 #include <cutter/cut-test.h>
26 
27 G_BEGIN_DECLS
28 
29 #define CUT_TYPE_TEST_CONTAINER            (cut_test_container_get_type ())
30 #define CUT_TEST_CONTAINER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CUT_TYPE_TEST_CONTAINER, CutTestContainer))
31 #define CUT_TEST_CONTAINER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CUT_TYPE_TEST_CONTAINER, CutTestContainerClass))
32 #define CUT_IS_TEST_CONTAINER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CUT_TYPE_TEST_CONTAINER))
33 #define CUT_IS_TEST_CONTAINER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CUT_TYPE_TEST_CONTAINER))
34 #define CUT_TEST_CONTAINER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), CUT_TYPE_TEST_CONTAINER, CutTestContainerClass))
35 
36 typedef struct _CutTestContainer      CutTestContainer;
37 typedef struct _CutTestContainerClass CutTestContainerClass;
38 
39 struct _CutTestContainer
40 {
41     CutTest object;
42 };
43 
44 struct _CutTestContainerClass
45 {
46     CutTestClass parent_class;
47 };
48 
49 GType        cut_test_container_get_type     (void) G_GNUC_CONST;
50 
51 void         cut_test_container_add_test     (CutTestContainer *container,
52                                               CutTest          *test);
53 GList       *cut_test_container_get_children (CutTestContainer *container);
54 GList       *cut_test_container_filter_children
55                                              (CutTestContainer *container,
56                                               const gchar     **filter);
57 guint        cut_test_container_get_n_tests  (CutTestContainer *container,
58                                               CutRunContext    *run_context);
59 
60 G_END_DECLS
61 
62 #endif /* __CUT_TEST_CONTAINER_H__ */
63 
64 /*
65 vi:nowrap:ai:expandtab:sw=4
66 */
67