/* unit test for the CuteThing implementation */

#include "cute-thing.h"

int
main (int argc, char* argv[])
{
	GObject *obj;

	g_type_init ();

	obj = cute_thing_new ();
/* do something interesting with our brand new object */

	return 0;
}
