1 /* GStreamer
2  *
3  * unit test for clock selection
4  *
5  * Copyright (C) <2005> Wim Taymans <wim at fluendo dot com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26 
27 #include <gst/check/gstcheck.h>
28 
GST_START_TEST(test_add)29 GST_START_TEST (test_add)
30 {
31   GstElement *pipeline;
32   GstStateChangeReturn ret;
33 
34   pipeline = gst_pipeline_new ("pipeline");
35   fail_unless (pipeline != NULL, "could not create pipeline");
36 
37   ret = gst_element_set_state (pipeline, GST_STATE_READY);
38   fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "could not set to READY");
39 
40   /* cleanup */
41   gst_element_set_state (pipeline, GST_STATE_NULL);
42   gst_object_unref (pipeline);
43 }
44 
45 GST_END_TEST;
46 
47 static Suite *
clocks_suite(void)48 clocks_suite (void)
49 {
50   Suite *s = suite_create ("clocks");
51   TCase *tc_chain = tcase_create ("general");
52 
53   suite_add_tcase (s, tc_chain);
54   tcase_add_test (tc_chain, test_add);
55 
56   return s;
57 }
58 
59 GST_CHECK_MAIN (clocks);
60