Convert CR or CR+LF to LF.
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-Toolkit.cpp
1 /*
2  * Copyright (c) 2015 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 #include <stdlib.h>
20 #include <dali-toolkit-test-suite-utils.h>
21 #include <dali-toolkit/dali-toolkit.h>
22
23 using namespace Dali;
24 using namespace Toolkit;
25
26 void dali_toolkit_startup(void)
27 {
28   test_return_value = TET_UNDEF;
29 }
30
31 void dali_toolkit_cleanup(void)
32 {
33   test_return_value = TET_PASS;
34 }
35
36 int UtcToolkitIsVertical(void)
37 {
38   ToolkitTestApplication application;
39
40   bool bRet = false;
41
42   tet_infoline(" UtcToolkitIsVertical");
43   bRet = IsVertical(ControlOrientation::Up);
44   DALI_TEST_EQUALS( bRet, true, TEST_LOCATION );
45
46   bRet = IsVertical(ControlOrientation::Down);
47   DALI_TEST_EQUALS( bRet, true, TEST_LOCATION );
48
49   END_TEST;
50 }
51
52 int UtcToolkitIsHorizontal(void)
53 {
54   ToolkitTestApplication application;
55
56   bool bRet = false;
57
58   tet_infoline(" UtcToolkitIsHorizontal");
59   bRet = IsHorizontal(ControlOrientation::Left);
60   DALI_TEST_EQUALS( bRet, true, TEST_LOCATION );
61
62   bRet = IsHorizontal(ControlOrientation::Right);
63   DALI_TEST_EQUALS( bRet, true, TEST_LOCATION );
64
65   END_TEST;
66 }
67