60fa43506157abe2b82556d897ac8d3ff59a366b
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-TapGesture.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 #include <iostream>
18
19 #include <stdlib.h>
20 #include <dali/dali.h>
21 #include <dali-test-suite-utils.h>
22
23 using namespace Dali;
24
25 void utc_dali_tap_gesture_startup(void)
26 {
27   test_return_value = TET_UNDEF;
28 }
29
30 void utc_dali_tap_gesture_cleanup(void)
31 {
32   test_return_value = TET_PASS;
33 }
34
35
36 // Positive test case for a method
37 int UtcDaliTapGestureConstructor(void)
38 {
39   TestApplication application; // Reset all test adapter return codes
40
41   TapGesture gesture;
42   DALI_TEST_EQUALS(1u, gesture.numberOfTouches, TEST_LOCATION);
43   DALI_TEST_EQUALS(1u, gesture.numberOfTaps, TEST_LOCATION);
44   DALI_TEST_EQUALS(Gesture::Tap, gesture.type, TEST_LOCATION);
45
46   // Test Copy constructor
47   gesture.numberOfTouches = 5u;
48   gesture.numberOfTaps = 2u;
49
50   TapGesture gesture2(gesture);
51   DALI_TEST_EQUALS(5u, gesture2.numberOfTouches, TEST_LOCATION);
52   DALI_TEST_EQUALS(2u, gesture2.numberOfTaps, TEST_LOCATION);
53   DALI_TEST_EQUALS(Gesture::Tap, gesture2.type, TEST_LOCATION);
54   END_TEST;
55 }
56
57 int UtcDaliTapGestureAssignment(void)
58 {
59   // Test Assignment operator
60   TapGesture gesture;
61   DALI_TEST_EQUALS(1u, gesture.numberOfTouches, TEST_LOCATION);
62   DALI_TEST_EQUALS(1u, gesture.numberOfTaps, TEST_LOCATION);
63   DALI_TEST_EQUALS(Gesture::Tap, gesture.type, TEST_LOCATION);
64
65   gesture.numberOfTouches = 5u;
66   gesture.numberOfTaps = 2u;
67
68   TapGesture gesture2;
69   gesture2 = gesture;
70   DALI_TEST_EQUALS(5u, gesture2.numberOfTouches, TEST_LOCATION);
71   DALI_TEST_EQUALS(2u, gesture2.numberOfTaps, TEST_LOCATION);
72   DALI_TEST_EQUALS(Gesture::Tap, gesture2.type, TEST_LOCATION);
73   END_TEST;
74 }