Renaming of enum values for coding standards compliance.
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-Gesture.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_gesture_startup(void)
27 {
28   test_return_value = TET_UNDEF;
29 }
30
31 void utc_dali_gesture_cleanup(void)
32 {
33   test_return_value = TET_PASS;
34 }
35
36 namespace
37 {
38
39 // TestGesture Struct (Gesture constructor is protected)
40 struct TestGesture : public Gesture
41 {
42 public:
43   TestGesture(Gesture::Type type, Gesture::State state)
44   : Gesture(type, state) {}
45
46   virtual ~TestGesture() {}
47 };
48
49 } // anon namespace
50
51 int UtcDaliGestureConstructor(void)
52 {
53   TestApplication application; // Reset all test adapter return codes
54
55   TestGesture pan(Gesture::Pan, Gesture::Started);
56   DALI_TEST_EQUALS(Gesture::Pan, pan.type, TEST_LOCATION);
57   DALI_TEST_EQUALS(Gesture::Started, pan.state, TEST_LOCATION);
58
59   TestGesture pinch(Gesture::Pinch, Gesture::Clear);
60   DALI_TEST_EQUALS(Gesture::Pinch, pinch.type, TEST_LOCATION);
61   DALI_TEST_EQUALS(Gesture::Clear, pinch.state, TEST_LOCATION);
62
63   // Test copy constructor
64   TestGesture pan2(pan);
65   DALI_TEST_EQUALS(Gesture::Pan, pan2.type, TEST_LOCATION);
66   DALI_TEST_EQUALS(Gesture::Started, pan2.state, TEST_LOCATION);
67   END_TEST;
68 }
69
70 int UtcDaliGestureAssignment(void)
71 {
72   // Test Assignment operator
73   TestGesture pan(Gesture::Pan, Gesture::Finished);
74   DALI_TEST_EQUALS(Gesture::Pan, pan.type, TEST_LOCATION);
75   DALI_TEST_EQUALS(Gesture::Finished, pan.state, TEST_LOCATION);
76
77   TestGesture test(Gesture::Pinch, Gesture::Started);
78   DALI_TEST_EQUALS(Gesture::Pinch, test.type, TEST_LOCATION);
79   DALI_TEST_EQUALS(Gesture::Started, test.state, TEST_LOCATION);
80
81   test = pan;
82   DALI_TEST_EQUALS(Gesture::Pan, test.type, TEST_LOCATION);
83   DALI_TEST_EQUALS(Gesture::Finished, test.state, TEST_LOCATION);
84   END_TEST;
85 }