summaryrefslogtreecommitdiff
path: root/src/tests/efl/efl_test_model_composite_boolean.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/efl/efl_test_model_composite_boolean.c')
-rw-r--r--src/tests/efl/efl_test_model_composite_boolean.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/tests/efl/efl_test_model_composite_boolean.c b/src/tests/efl/efl_test_model_composite_boolean.c
new file mode 100644
index 0000000000..2d4dbe9456
--- /dev/null
+++ b/src/tests/efl/efl_test_model_composite_boolean.c
@@ -0,0 +1,42 @@
+/* EFL - EFL library
+ * Copyright (C) 2013 Cedric Bail
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library;
+ * if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include "efl_suite.h"
+
+#include <Efl.h>
+
+START_TEST(efl_model_composite_boolean)
+{
+ eo_init();
+
+ Efl_Model_Composite_Boolean* model
+ = eo_add(EFL_MODEL_COMPOSITE_BOOLEAN_CLASS, NULL);
+
+ eo_shutdown();
+}
+END_TEST
+
+void
+efl_test_model_composite_boolean(TCase *tc)
+{
+ tcase_add_test(tc, efl_model_composite_boolean);
+}