Renaming of enum values for coding standards compliance.
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-LongPressGesture.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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
18 #include <iostream>
19
20 #include <stdlib.h>
21 #include <dali/public-api/dali-core.h>
22 #include <dali-test-suite-utils.h>
23
24 using namespace Dali;
25
26 void utc_dali_long_press_gesture_startup(void)
27 {
28   test_return_value = TET_UNDEF;
29 }
30
31 void utc_dali_long_press_gesture_cleanup(void)
32 {
33   test_return_value = TET_PASS;
34 }
35
36
37 // Positive test case for a method
38 int UtcDaliLongPressGestureConstructor(void)
39 {
40   TestApplication application; // Reset all test adapter return codes
41
42   LongPressGesture gesture( Gesture::Started );
43   DALI_TEST_EQUALS(1u, gesture.numberOfTouches, TEST_LOCATION);
44   DALI_TEST_EQUALS(Gesture::LongPress, gesture.type, TEST_LOCATION);
45
46   // Test Copy constructor
47   gesture.numberOfTouches = 5u;
48
49   LongPressGesture gesture2(gesture);
50   DALI_TEST_EQUALS(5u, gesture2.numberOfTouches, TEST_LOCATION);
51   DALI_TEST_EQUALS(Gesture::LongPress, gesture2.type, TEST_LOCATION);
52   DALI_TEST_EQUALS(Gesture::Started, gesture2.state, TEST_LOCATION);
53   END_TEST;
54 }
55
56 int UtcDaliLongPressGestureAssignment(void)
57 {
58   // Test Assignment operator
59   LongPressGesture gesture( Gesture::Started );
60   DALI_TEST_EQUALS(1u, gesture.numberOfTouches, TEST_LOCATION);
61   DALI_TEST_EQUALS(Gesture::LongPress, gesture.type, TEST_LOCATION);
62
63   gesture.numberOfTouches = 5u;
64
65   LongPressGesture gesture2( Gesture::Finished );
66   DALI_TEST_EQUALS(Gesture::Finished, gesture2.state, TEST_LOCATION);
67   gesture2 = gesture;
68   DALI_TEST_EQUALS(5u, gesture2.numberOfTouches, TEST_LOCATION);
69   DALI_TEST_EQUALS(Gesture::LongPress, gesture2.type, TEST_LOCATION);
70   DALI_TEST_EQUALS(Gesture::Started, gesture2.state, TEST_LOCATION);
71   END_TEST;
72 }
73
74 int UtcDaliLongPressGestureDynamicAllocation(void)
75 {
76   LongPressGesture* gesture = new LongPressGesture( Gesture::Started );
77   DALI_TEST_EQUALS(1u, gesture->numberOfTouches, TEST_LOCATION);
78   DALI_TEST_EQUALS(Gesture::LongPress, gesture->type, TEST_LOCATION);
79   delete gesture;
80
81   END_TEST;
82 }