aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-01-16 05:32:38 +0800
committerDiego Escalante Urrelo <diegoe@gnome.org>2010-01-22 06:09:43 +0800
commite0072d45988b1154a19ea46a6f93c5ccc66cb9c1 (patch)
treed0e1c4408cda4d3283995c5ef2aba691b1340891 /tests
parent6a824bca489ff1c7f4764224a42d33f3ea2b4455 (diff)
downloadgsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar.gz
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar.bz2
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar.lz
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar.xz
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.tar.zst
gsoc2013-epiphany-e0072d45988b1154a19ea46a6f93c5ccc66cb9c1.zip
tests: apply style fixes suggested by Xan
Diffstat (limited to 'tests')
-rw-r--r--tests/testephylocationentry.c40
-rw-r--r--tests/testephysearchentry.c10
-rw-r--r--tests/testephyzoomcontrol.c15
3 files changed, 26 insertions, 39 deletions
diff --git a/tests/testephylocationentry.c b/tests/testephylocationentry.c
index 5b691c432..099629bc6 100644
--- a/tests/testephylocationentry.c
+++ b/tests/testephylocationentry.c
@@ -142,30 +142,22 @@ main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/new",
- test_entry_new);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/get_entry",
- test_entry_get_entry);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/set_location",
- test_entry_set_location);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/get_location",
- test_entry_get_location);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/set_location_null",
- test_entry_set_location_null);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/get_location_empty",
- test_entry_get_location_empty);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/can_undo",
- test_entry_can_undo);
- g_test_add_func (
- "/lib/widgets/ephy-location-entry/can_redo",
- test_entry_can_redo);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/new",
+ test_entry_new);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/get_entry",
+ test_entry_get_entry);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/set_location",
+ test_entry_set_location);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/get_location",
+ test_entry_get_location);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/set_location_null",
+ test_entry_set_location_null);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/get_location_empty",
+ test_entry_get_location_empty);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/can_undo",
+ test_entry_can_undo);
+ g_test_add_func ("/lib/widgets/ephy-location-entry/can_redo",
+ test_entry_can_redo);
return g_test_run ();
}
diff --git a/tests/testephysearchentry.c b/tests/testephysearchentry.c
index 1f6575c5d..2ed4e72ca 100644
--- a/tests/testephysearchentry.c
+++ b/tests/testephysearchentry.c
@@ -65,12 +65,10 @@ main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv);
- g_test_add_func (
- "/lib/widgets/ephy-search-entry/new",
- test_entry_new);
- g_test_add_func (
- "/lib/widgets/ephy-search-entry/clear",
- test_entry_clear);
+ g_test_add_func ("/lib/widgets/ephy-search-entry/new",
+ test_entry_new);
+ g_test_add_func ("/lib/widgets/ephy-search-entry/clear",
+ test_entry_clear);
return g_test_run ();
}
diff --git a/tests/testephyzoomcontrol.c b/tests/testephyzoomcontrol.c
index c74e151d3..02c628d0f 100644
--- a/tests/testephyzoomcontrol.c
+++ b/tests/testephyzoomcontrol.c
@@ -67,15 +67,12 @@ main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv);
- g_test_add_func (
- "/lib/widgets/ephy-zoom-control/new",
- test_new);
- g_test_add_func (
- "/lib/widgets/ephy-zoom-control/set_zoom_level",
- test_set_zoom_level);
- g_test_add_func (
- "/lib/widgets/ephy-zoom-control/get_zoom_level",
- test_get_zoom_level);
+ g_test_add_func ("/lib/widgets/ephy-zoom-control/new",
+ test_new);
+ g_test_add_func ("/lib/widgets/ephy-zoom-control/set_zoom_level",
+ test_set_zoom_level);
+ g_test_add_func ("/lib/widgets/ephy-zoom-control/get_zoom_level",
+ test_get_zoom_level);
return g_test_run ();
}