~azzar1/unity/fix-839717-5.0

« back to all changes in this revision

Viewing changes to tests/test-gesture-engine/test_gesture_engine.cpp

  • Committer: Daniel d'Andrada
  • Date: 2012-04-04 14:33:07 UTC
  • mto: This revision was merged to the branch mainline in revision 2240.
  • Revision ID: daniel.dandrada@canonical.com-20120404143307-ehoiixn6vytno79e
Adding infrastructure for testing plugins/unityshell/GestureEngine class

Creates test-gesture-engine test along with necessary mocks

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2012 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the  Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * version 3 along with this program.  If not, see
 
15
 * <http://www.gnu.org/licenses/>
 
16
 *
 
17
 * Authored by: Daniel d'Andrada <daniel.dandrada@canonical.com>
 
18
 *
 
19
 */
 
20
 
 
21
#include <gtest/gtest.h>
 
22
#include <compiz_mock/core/core.h>
 
23
#include "GestureEngine.h"
 
24
 
 
25
CompScreenMock concrete_screen_mock;
 
26
CompScreenMock *screen_mock = &concrete_screen_mock;
 
27
int pointerX_mock = 0;
 
28
int pointerY_mock = 0;
 
29
 
 
30
TEST(GestureEngineTest, Foo)
 
31
{
 
32
  GestureEngine gestureEngine(screen_mock);
 
33
}
 
34
 
 
35
int main(int argc, char** argv)
 
36
{
 
37
  ::testing::InitGoogleTest(&argc, argv);
 
38
 
 
39
  int ret = RUN_ALL_TESTS();
 
40
 
 
41
  return ret;
 
42
}