-- Philip Van Hoof, software developer at x-tend home: me at pvanhoof dot be gnome: pvanhoof at gnome dot org work: vanhoof at x-tend dot be http://www.pvanhoof.be - http://www.x-tend.be |
Attachment:
gen.sh
Description: application/shellscript
/* tinymail - Tiny Mail gunit test
* Copyright (C) 2006-2007 Philip Van Hoof <pvanhoof gnome org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with self program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string.h>
#include <my-type-test.h>
#include <my-type.h>
static MyType *iface = NULL;
static gchar *str;
static void
my_type_test_setup (void)
{
iface = MY_TYPE (my_type_new ());
return;
}
static void
my_type_test_teardown (void)
{
g_object_unref (G_OBJECT (iface));
return;
}
static void
my_type_test_something (void)
{
str = g_strdup_printf ("Reason\n");
gunit_fail_unless (0 == 0, str);
g_free (str);
}
GUnitTestSuite*
create_my_type_suite (void)
{
GUnitTestSuite *suite = NULL;
/* Create test suite */
suite = gunit_test_suite_new ("MyType");
/* Add test case objects to test suite */
gunit_test_suite_add_test_case(suite,
gunit_test_case_new_with_funcs("my_type_test_something",
my_type_test_setup,
my_type_test_something,
my_type_test_teardown));
return suite;
}
#ifndef MY_TYPE_TEST_H #define MY_TYPE_TEST_H /* tinymail - Tiny Mail gunit test * Copyright (C) 2006-2007 Philip Van Hoof <pvanhoof gnome org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with self program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "tny-test-suite.h" #include <my-type-iface.h> /* Test suite */ GUnitTestSuite *create_my_type_suite (void); #endif