Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / wearable / tests / check / libs / gstlibscpp.cc
1 /* GStreamer
2  * Copyright (C) 2011 Tim-Philipp Müller <tim centricular net>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <gst/gst.h>
25 #include <gst/check/gstcheck.h>
26
27 #include <gst/base/gstadapter.h>
28 #include <gst/base/gstbasesink.h>
29 #include <gst/base/gstbasesrc.h>
30 #include <gst/base/gstbasetransform.h>
31 #include <gst/base/gstbitreader.h>
32 #include <gst/base/gstbytereader.h>
33 #include <gst/base/gstbytewriter.h>
34 #include <gst/base/gstcollectpads.h>
35 #include <gst/base/gstdataqueue.h>
36 #include <gst/base/gstpushsrc.h>
37 #include <gst/base/gsttypefindhelper.h>
38
39 #include <gst/controller/gstcontroller.h>
40 #include <gst/controller/gstcontrollerprivate.h>
41 #include <gst/controller/gstcontrolsource.h>
42 #include <gst/controller/gstinterpolationcontrolsource.h>
43 #include <gst/controller/gstinterpolationcontrolsourceprivate.h>
44 #include <gst/controller/gstlfocontrolsource.h>
45 #include <gst/controller/gstlfocontrolsourceprivate.h>
46
47 #include <gst/dataprotocol/dataprotocol.h>
48
49 #include <gst/net/gstnetclientclock.h>
50 #include <gst/net/gstnet.h>
51 #include <gst/net/gstnettimepacket.h>
52 #include <gst/net/gstnettimeprovider.h>
53
54 /* we mostly just want to make sure that our library headers don't
55  * contain anything a C++ compiler might not like */
56 GST_START_TEST (test_nothing)
57 {
58   gst_init (NULL, NULL);
59 }
60
61 GST_END_TEST;
62
63 static Suite *
64 libscpp_suite (void)
65 {
66   Suite *s = suite_create ("GstLibsCpp");
67   TCase *tc_chain = tcase_create ("C++ libs header tests");
68
69   suite_add_tcase (s, tc_chain);
70   tcase_add_test (tc_chain, test_nothing);
71
72   return s;
73 }
74
75 GST_CHECK_MAIN (libscpp);