diff options
author | Ted Gould <ted@canonical.com> | 2009-10-08 13:00:00 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-08 13:00:00 -0400 |
commit | 1386478a87fd0f228dd31a00d8f3d969d6a6a98c (patch) | |
tree | 77a6361712a0a8d129e254e4a6835e3f8ebc9f33 /tests/test-loader.c | |
parent | c314d6040b93da70359e19a8b7475c94fc86fb1c (diff) | |
download | libayatana-indicator-1386478a87fd0f228dd31a00d8f3d969d6a6a98c.tar.gz libayatana-indicator-1386478a87fd0f228dd31a00d8f3d969d6a6a98c.tar.bz2 libayatana-indicator-1386478a87fd0f228dd31a00d8f3d969d6a6a98c.zip |
Fleshing out the test a little bit.
Diffstat (limited to 'tests/test-loader.c')
-rw-r--r-- | tests/test-loader.c | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/tests/test-loader.c b/tests/test-loader.c index 63590c7..7e77195 100644 --- a/tests/test-loader.c +++ b/tests/test-loader.c @@ -1,7 +1,29 @@ +#include <glib.h> +#include "libindicator/indicator-object.h" + +void +test_loader_refunref (void) +{ + + return; +} + +void +test_loader_creation_deletion_suite (void) +{ + g_test_add_func ("/libindicator/loader/ref_and_unref", test_loader_refunref); + + return; +} + int main (int argc, char ** argv) { + g_type_init (); + g_test_init (&argc, &argv, NULL); + + test_loader_creation_deletion_suite(); - return 0; + return g_test_run(); } |