~mir-team/ubuntu-app-launch/mir-release-0.14.0

« back to all changes in this revision

Viewing changes to tests/exec-util-test.cc

  • Committer: Ted Gould
  • Date: 2014-04-30 16:18:29 UTC
  • mto: This revision was merged to the branch mainline in revision 150.
  • Revision ID: ted@gould.cx-20140430161829-xlmg4oauodcopo3f
Adjusting tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <gtest/gtest.h>
21
21
#include <libdbustest/dbus-test.h>
22
22
#include <gio/gio.h>
23
 
#include <libupstart-app-launch/upstart-app-launch.h>
 
23
#include <libubuntu-app-launch/ubuntu-app-launch.h>
24
24
 
25
25
class ExecUtil : public ::testing::Test
26
26
{
59
59
                        g_object_add_weak_pointer(G_OBJECT(bus), (gpointer *)&bus);
60
60
 
61
61
                        /* Make the handshake clear faster */
62
 
                        upstart_app_launch_observer_add_app_starting(starting_cb, NULL);
 
62
                        ubuntu_app_launch_observer_add_app_starting(starting_cb, NULL);
63
63
                }
64
64
 
65
65
                virtual void TearDown() {
66
 
                        upstart_app_launch_observer_delete_app_starting(starting_cb, NULL);
 
66
                        ubuntu_app_launch_observer_delete_app_starting(starting_cb, NULL);
67
67
 
68
68
                        g_clear_object(&mock);
69
69
                        g_clear_object(&service);